no class for notice content div in systemlistitem

This commit is contained in:
Evan Prodromou 2011-08-24 18:12:26 -04:00
parent 352e66d25a
commit 420e7ddf83
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ if (!defined('STATUSNET')) {
* @link http://status.net/
*/
abstract class SystemListItem extends NoticeListItemAdapter
class SystemListItem extends NoticeListItemAdapter
{
/**
* Show the activity
@ -56,7 +56,7 @@ abstract class SystemListItem extends NoticeListItemAdapter
function showNotice()
{
$out = $this->nli->out;
$out->elementStart('div', 'entry-title');
$out->elementStart('div');
$this->showContent();
$out->elementEnd('div');
}