- OStatusPlugin should return true if it doesn't need to handle source

attribution
- Remove stray break statement from NoticeList
This commit is contained in:
Zach Copley 2010-05-06 19:52:25 +00:00
parent 209fd12cd0
commit ce177400f8
2 changed files with 1 additions and 1 deletions

View File

@ -530,7 +530,6 @@ class NoticeListItem extends Widget
} else { } else {
$this->out->element('span', 'device', $name); $this->out->element('span', 'device', $name);
} }
break;
} }
$this->out->elementEnd('span'); $this->out->elementEnd('span');
} }

View File

@ -452,6 +452,7 @@ class OStatusPlugin extends Plugin
return false; return false;
} }
} }
return true;
} }
/** /**