summaryrefslogtreecommitdiff
path: root/lib/action.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-15 23:44:19 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-15 23:44:19 +0000
commit16619439ab7d67331722cc00e3b24f451ee8fa6a (patch)
tree54ab10952f535c100f3536d32fe1dddea13ddd73 /lib/action.php
parente697faf23bf70ed43d074a2f437aae362580e003 (diff)
Move some accounting stuff from publicgroupnav to action
More dl's and dd's. Rather than replicate them in every sub-class, let's just put them in one place.
Diffstat (limited to 'lib/action.php')
-rw-r--r--lib/action.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/action.php b/lib/action.php
index ed8b5c352..9534073ec 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');