diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-02-04 17:03:59 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-02-04 17:03:59 +0000 |
commit | b8e10428d3f5e86cab97e226947f077ba98f907e (patch) | |
tree | a1eb5b7b9871a7cf67e30a1cfd63473271c16402 /lib | |
parent | 593d41f78b8caa94208abdd5787ef26280460b61 (diff) |
Changed error and facebookaction wrap selector from @class to @id.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/error.php | 2 | ||||
-rw-r--r-- | lib/facebookaction.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/error.php b/lib/error.php index 03065bc70..526d9f81b 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 bfba702e6..f42427540 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(); |