diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-15 22:17:48 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-15 22:17:48 +0000 |
commit | a72ae0f4df7e9bbbd4864e21f784ea0da53dfcac (patch) | |
tree | 7d0d5aad340d2c20fffc6059c0e7c7ae5b27e076 /lib | |
parent | 4cee28ace9ece31acc89277903a8924a0747ac95 (diff) |
Move wrapper for content
Diffstat (limited to 'lib')
-rw-r--r-- | lib/action.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/action.php b/lib/action.php index 76962482f..76cf419cb 100644 --- a/lib/action.php +++ b/lib/action.php @@ -306,8 +306,11 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('div', array('id' => 'content')); $this->showPageTitle(); $this->showPageNotice(); + $this->elementStart('div', array('id' => 'content_inner')); + // show the actual content (forms, lists, whatever) $this->showContent(); $this->elementEnd('div'); + $this->elementEnd('div'); } function showPageTitle() { @@ -331,9 +334,6 @@ class Action extends HTMLOutputter // lawsuit function showContent() { - // show the actual content (forms, lists, whatever) - $this->elementStart('div', array('id' => 'content_inner')); - $this->elementEnd('div'); } function showAside() |