diff options
author | Meitar Moscovitz <meitarm@gmail.com> | 2009-02-10 18:28:12 +1100 |
---|---|---|
committer | Meitar Moscovitz <meitarm@gmail.com> | 2009-02-10 18:28:12 +1100 |
commit | 3585012380bd8352b8e7bbb605bed05a9148fe11 (patch) | |
tree | cab877aa2ad7001eb5bf593c79ec72e7e09ca0fd /lib/action.php | |
parent | 8cb3035b89df32e8194f7607bb8d098f57f81d23 (diff) | |
parent | 47a5d2b7f06cd1612734c47ad21fc397bbff5276 (diff) |
Merge branch 'dev-0.7.x' into link-rel-paginate
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index 04ee187ab..8d0fea7af 100644 --- a/lib/action.php +++ b/lib/action.php @@ -538,12 +538,16 @@ class Action extends HTMLOutputter // lawsuit * * @return nothing */ + function showAside() { $this->elementStart('div', array('id' => 'aside_primary', 'class' => 'aside')); $this->showExportData(); - $this->showSections(); + if (Event::handle('StartShowSections', array($this))) { + $this->showSections(); + Event::handle('EndShowSections', array($this)); + } $this->elementEnd('div'); } |