diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-02-04 15:40:36 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-04 15:40:36 -0500 |
commit | a97f8f6a43b27b3392ef9b03be58e37d743f394d (patch) | |
tree | e4ac4bb75b4218de840994f459ec11644820acc8 /lib | |
parent | 2bd52059dbcc2ece561daba73963c66d410ad89e (diff) | |
parent | df41b1307f9a2690115e246e584d6a398d4f9730 (diff) |
merge from dev/0.7.x
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(); |