diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-09-17 15:04:45 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-09-17 15:04:45 -0400 |
commit | 24496bafd2356240a1ac419bb568aeb8040ec699 (patch) | |
tree | 63e3cf308e3aca35236f69f1ca34640ea16e0c8a /actions | |
parent | ea8fce00524b1abd453ad8af2b33a83a8a30536e (diff) |
skip over Mailbox::handle to Action::handle
darcs-hash:20080917190445-5ed1f-4fdf97356c40eb076185eff790ce0d34b5117699.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/showmessage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/showmessage.php b/actions/showmessage.php index 137d6adf9..c57c96aef 100644 --- a/actions/showmessage.php +++ b/actions/showmessage.php @@ -25,7 +25,7 @@ class ShowmessageAction extends MailboxAction { function handle($args) { - parent::handle($args); + Action::handle($args); $id = $this->trimmed('id'); |