From: Brion Vibber Date: Wed, 16 Mar 2011 00:32:25 +0000 (-0700) Subject: Add layout divs to InfoAction's core block; fixes error display layout in Neo skin X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7345de120221da277fff253e59a7259ae3b0e9cb;p=quix0rs-gnu-social.git Add layout divs to InfoAction's core block; fixes error display layout in Neo skin --- diff --git a/lib/info.php b/lib/info.php index 395c6522ec..f72bed59d6 100644 --- a/lib/info.php +++ b/lib/info.php @@ -93,8 +93,14 @@ class InfoAction extends Action function showCore() { $this->elementStart('div', array('id' => 'core')); + $this->elementStart('div', array('id' => 'aside_primary_wrapper')); + $this->elementStart('div', array('id' => 'content_wrapper')); + $this->elementStart('div', array('id' => 'site_nav_local_views_wrapper')); $this->showContentBlock(); $this->elementEnd('div'); + $this->elementEnd('div'); + $this->elementEnd('div'); + $this->elementEnd('div'); } function showHeader()