Add layout divs to InfoAction's core block; fixes error display layout in Neo skin

This commit is contained in:
Brion Vibber 2011-03-15 17:32:25 -07:00
parent 341bef5e01
commit 7345de1202
1 changed files with 6 additions and 0 deletions

View File

@ -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()