diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-14 13:14:20 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-14 13:14:20 -0800 |
commit | 3bf1024771537b4499ffbf8e2e7c25be30cc204d (patch) | |
tree | 12ed27fff8e998db5c8f194a78df9a4609d64dbc /lib/mailbox.php | |
parent | 3752c1fdcee53c7e609d77600591b7de78b7ce3b (diff) |
Fix regression from ba199ad4ec47e6b0c067a3b2a15882d3836ea009: typo in refactoring caused fatal error on unrecognized message source
Example report from live site: http://identi.ca/notice/14629110
Diffstat (limited to 'lib/mailbox.php')
-rw-r--r-- | lib/mailbox.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mailbox.php b/lib/mailbox.php index e1d384a06..90a58b4c4 100644 --- a/lib/mailbox.php +++ b/lib/mailbox.php @@ -282,7 +282,7 @@ class MailboxAction extends CurrentUserDesignAction $ns->name); $this->elementEnd('span'); } else { - $this->out->element('span', 'device', $source_name); + $this->element('span', 'device', $source_name); } break; } |