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

View File

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