From 16619439ab7d67331722cc00e3b24f451ee8fa6a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 15 Jan 2009 23:44:19 +0000 Subject: 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. --- lib/action.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/action.php') 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'); -- cgit v1.2.3-54-g00ecf