]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Activity/systemlistitem.php
Merge commit 'refs/merge-requests/158' of git://gitorious.org/statusnet/mainline...
[quix0rs-gnu-social.git] / plugins / Activity / systemlistitem.php
index d2b99c802e54bd9ae5e8482370d50007e8059009..c6753e5ff198fe124fc2809a1292204795bc8ae2 100644 (file)
@@ -4,7 +4,7 @@
  * Copyright (C) 2011, StatusNet, Inc.
  *
  * Superclass for system event items
- * 
+ *
  * PHP version 5
  *
  * This program is free software: you can redistribute it and/or modify
@@ -44,7 +44,6 @@ if (!defined('STATUSNET')) {
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  * @link      http://status.net/
  */
-
 class SystemListItem extends NoticeListItemAdapter
 {
     /**
@@ -52,11 +51,10 @@ class SystemListItem extends NoticeListItemAdapter
      *
      * @return void
      */
-    
     function showNotice()
     {
         $out = $this->nli->out;
-        $out->elementStart('div');
+        $out->elementStart('div', 'entry-title');
         $this->showContent();
         $out->elementEnd('div');
     }
@@ -65,15 +63,15 @@ class SystemListItem extends NoticeListItemAdapter
     {
         $notice = $this->nli->notice;
         $out    = $this->nli->out;
-               
-               // FIXME: get the actual data on the leave
-               
+
+        // FIXME: get the actual data on the leave
+
         $out->elementStart('div', 'system-activity');
 
         $out->raw($notice->rendered);
-        
+
         $out->elementEnd('div');
-    } 
+    }
 
     function showNoticeOptions()
     {