diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-15 22:00:48 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-15 22:00:48 +0000 |
commit | 18dc498a6a7308bb9b5f41bdb33fca4addf8d80b (patch) | |
tree | e56785f96c7b18067b2395b971d5dfc6ea4dafa4 | |
parent | cf809f6464ee41ccbb654d226f328457fc2e5299 (diff) |
Added aside_primary id
-rw-r--r-- | lib/action.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/action.php b/lib/action.php index 76962482f..773b0dce9 100644 --- a/lib/action.php +++ b/lib/action.php @@ -338,10 +338,11 @@ class Action extends HTMLOutputter // lawsuit function showAside() { - $this->elementStart('div', 'aside'); + $this->elementStart('div', array('id' => 'aside_primary', + 'class' => 'aside')); $this->showExportData(); $this->showSections(); - $this->elementEnd('div'); + $this->elementEnd('div'); } // MAY overload if there are feeds |