summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-19 18:22:03 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-19 18:22:03 +0000
commit0b9cda03d5c5d4dac96e862115a10bcb11c2a597 (patch)
tree81fad06b325f93ba3d9ee3e1631749015d04a770 /lib
parent930f82a95170e05ad2d4fc079cc944d29521797d (diff)
parenta5f3e3b759879aaed31a82fa98a89d6d3594af8c (diff)
Merge branch 'master' of /var/www/trunk
Diffstat (limited to 'lib')
-rw-r--r--lib/action.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/action.php b/lib/action.php
index c056c128f..5987abf3c 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->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