From b8e10428d3f5e86cab97e226947f077ba98f907e Mon Sep 17 00:00:00 2001
From: Sarven Capadisli <csarven@controlyourself.ca>
Date: Wed, 4 Feb 2009 17:03:59 +0000
Subject: [PATCH] Changed error and facebookaction wrap selector from @class to
 @id.

---
 lib/error.php          | 2 +-
 lib/facebookaction.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/error.php b/lib/error.php
index 03065bc709..526d9f81be 100644
--- a/lib/error.php
+++ b/lib/error.php
@@ -111,7 +111,7 @@ class ErrorAction extends Action
     function showBody()
     {
         $this->elementStart('body', array('id' => 'error'));
-        $this->elementStart('div', 'wrap');
+        $this->elementStart('div', array('id' => 'wrap'));
         $this->showHeader();
         $this->showCore();
         $this->showFooter();
diff --git a/lib/facebookaction.php b/lib/facebookaction.php
index bfba702e6a..f42427540a 100644
--- a/lib/facebookaction.php
+++ b/lib/facebookaction.php
@@ -168,7 +168,7 @@ class FacebookAction extends Action
 
     function showBody()
     {
-        $this->elementStart('div', 'wrap');
+        $this->elementStart('div', array('id' => 'wrap'));
         $this->showHeader();
         $this->showCore();
         $this->showFooter();
-- 
2.39.5