diff options
author | Zach Copley <zach@status.net> | 2009-10-01 16:17:43 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-10-01 16:17:43 -0700 |
commit | b3bbaecf47d74102a2ed48cd0c773d33a4a49d59 (patch) | |
tree | 5aed1f7150ac6a988148499cd8beae8b1854648f /lib/action.php | |
parent | b0ddb971e61bd98250c41e653ab2e649a9b08926 (diff) | |
parent | f65baaaa4f48b84392200bb54161887669440cab (diff) |
Merge branch '0.9.x' into refactor-api
* 0.9.x:
change DB so OpenIDPlugin manages OpenID tables
Some bug fixes
check the schema
add some more methods to Schema
Added hook for Aside container
Revert "Outputting UTF-8 charset in document header irrespective of mimetype."
FOAF for Groups.
use schema tool to create a table
statusize schema-related modules
test script for schema code
make table def method of schema code work
start a module for schema management
Diffstat (limited to 'lib/action.php')
-rw-r--r-- | lib/action.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php index 02793f069..71ceffe20 100644 --- a/lib/action.php +++ b/lib/action.php @@ -525,7 +525,10 @@ class Action extends HTMLOutputter // lawsuit $this->showContentBlock(); Event::handle('EndShowContentBlock', array($this)); } - $this->showAside(); + if (Event::handle('StartShowAside', array($this))) { + $this->showAside(); + Event::handle('EndShowAside', array($this)); + } $this->elementEnd('div'); } |