diff options
author | Zach Copley <zach@status.net> | 2010-05-06 19:52:25 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-05-06 21:48:12 +0000 |
commit | ce177400f876a1e48f38ef18635d5ecf486a6867 (patch) | |
tree | ff6c30665db5be2662faae5245cc88bf7d1f0f4b | |
parent | 209fd12cd033c62619c68ac17a4fa70b1e981169 (diff) |
- OStatusPlugin should return true if it doesn't need to handle source
attribution
- Remove stray break statement from NoticeList
-rw-r--r-- | lib/noticelist.php | 1 | ||||
-rw-r--r-- | plugins/OStatus/OStatusPlugin.php | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index c42e4fb60..c7dc9d29d 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -530,7 +530,6 @@ class NoticeListItem extends Widget } else { $this->out->element('span', 'device', $name); } - break; } $this->out->elementEnd('span'); } diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index f183bc7ae..d3a92755c 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -452,6 +452,7 @@ class OStatusPlugin extends Plugin return false; } } + return true; } /** |