move profile block to the aside

This commit is contained in:
Evan Prodromou 2011-03-14 15:18:03 -05:00
parent f23184a8d6
commit f242cf0e58

View File

@ -717,7 +717,6 @@ class Action extends HTMLOutputter // lawsuit
// all menus // all menus
$this->elementStart('div', array('id' => 'site_nav_local_views')); $this->elementStart('div', array('id' => 'site_nav_local_views'));
// Cheat cheat cheat! // Cheat cheat cheat!
$this->showProfileBlock();
$this->showLocalNav(); $this->showLocalNav();
$this->elementEnd('div'); $this->elementEnd('div');
} }
@ -879,6 +878,7 @@ class Action extends HTMLOutputter // lawsuit
{ {
$this->elementStart('div', array('id' => 'aside_primary', $this->elementStart('div', array('id' => 'aside_primary',
'class' => 'aside')); 'class' => 'aside'));
$this->showProfileBlock();
if (Event::handle('StartShowObjectNavBlock', array($this))) { if (Event::handle('StartShowObjectNavBlock', array($this))) {
$this->showObjectNavBlock(); $this->showObjectNavBlock();
Event::handle('EndShowObjectNavBlock', array($this)); Event::handle('EndShowObjectNavBlock', array($this));