summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2009-11-14 13:14:20 -0800
committerBrion Vibber <brion@pobox.com>2009-11-14 13:14:20 -0800
commit3bf1024771537b4499ffbf8e2e7c25be30cc204d (patch)
tree12ed27fff8e998db5c8f194a78df9a4609d64dbc
parent3752c1fdcee53c7e609d77600591b7de78b7ce3b (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
-rw-r--r--lib/mailbox.php2
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;
}