summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-15 22:19:53 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-15 22:19:53 +0000
commitd6d9a0a98155b251ff9893637ab4b8e641331d04 (patch)
tree039f1bbe93417c0daca88df0e46ad63868c47d74 /lib
parent8b3459812764d05044bcdfb18627f80c34dc239d (diff)
parenta72ae0f4df7e9bbbd4864e21f784ea0da53dfcac (diff)
Merge branch 'uiredesign' of ../evan into uiredesign
Diffstat (limited to 'lib')
-rw-r--r--lib/action.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/action.php b/lib/action.php
index 773b0dce9..d106ba366 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()