summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/action.php13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/action.php b/lib/action.php
index c056c128f..d385c3cb5 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -301,15 +301,20 @@ class Action extends HTMLOutputter // lawsuit
function showCore()
{
$this->elementStart('div', array('id' => 'core'));
+ $this->showLocalNavBlock();
+ $this->elementEnd('dl');
+ $this->showContentBlock();
+ $this->showAside();
+ $this->elementEnd('div');
+ }
+
+ function showLocalNavBlock()
+ {
$this->elementStart('dl', array('id' => 'site_nav_local_views'));
$this->element('dt', null, _('Local views'));
$this->elementStart('dd');
$this->showLocalNav();
$this->elementEnd('dd');
- $this->elementEnd('dl');
- $this->showContentBlock();
- $this->showAside();
- $this->elementEnd('div');
}
// SHOULD overload