]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
no class for notice content div in systemlistitem
authorEvan Prodromou <evan@status.net>
Wed, 24 Aug 2011 22:12:26 +0000 (18:12 -0400)
committerEvan Prodromou <evan@status.net>
Wed, 24 Aug 2011 22:12:26 +0000 (18:12 -0400)
plugins/Activity/systemlistitem.php

index 257f580ead27d82fce25e9c9ac4fbd6758428bb0..d2b99c802e54bd9ae5e8482370d50007e8059009 100644 (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');
     }