diff options
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/action.php b/lib/action.php index f9f5acf2c..90bb67870 100644 --- a/lib/action.php +++ b/lib/action.php @@ -297,7 +297,12 @@ class Action extends HTMLOutputter // lawsuit function showCore() { $this->elementStart('div', array('id' => 'core')); + $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'); |