]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Move wrapper for content
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 15 Jan 2009 22:17:48 +0000 (22:17 +0000)
committerEvan Prodromou <evan@controlyourself.ca>
Thu, 15 Jan 2009 22:17:48 +0000 (22:17 +0000)
lib/action.php

index 76962482f59b5999a19202c2cd4127d3e0a3ccf2..76cf419cb3fd2e6d310b4e53d7510ff4679f5707 100644 (file)
@@ -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()