diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-14 13:10:47 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-14 13:10:47 -0800 |
commit | 133ca0ef6b13d4d693c2e03b831cc75517f89227 (patch) | |
tree | 854701ad810f740cdf72747ef00c0cba7803f1ad | |
parent | fe18063bd2bb00ac67d4afc038850cd3a7a63189 (diff) |
Fix regression from 9f372da3da4bd445175eda9155fa7fdd13d3c85e: typo in refactoring caused fatal error on unrecognized message source
-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; } |