From: Evan Prodromou Date: Thu, 15 Jan 2009 22:17:48 +0000 (+0000) Subject: Move wrapper for content X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a72ae0f4df7e9bbbd4864e21f784ea0da53dfcac;p=quix0rs-gnu-social.git Move wrapper for content --- diff --git a/lib/action.php b/lib/action.php index 76962482f5..76cf419cb3 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()