]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/Activity/unfollowlistitem.php
Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x
[quix0rs-gnu-social.git] / plugins / Activity / unfollowlistitem.php
index 8bc464ed239110ac185a1d43f8b5f02ada07c7d3..0ecb8bef5a0095a96e59ff636545fce50e018a11 100644 (file)
@@ -3,8 +3,8 @@
  * StatusNet - the distributed open-source microblogging tool
  * Copyright (C) 2011, StatusNet, Inc.
  *
- * Title of module
- * 
+ * Unfollow list item
+ *
  * PHP version 5
  *
  * This program is free software: you can redistribute it and/or modify
@@ -20,7 +20,7 @@
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
- * @category  Cache
+ * @category  Activity
  * @package   StatusNet
  * @author    Evan Prodromou <evan@status.net>
  * @copyright 2011 StatusNet, Inc.
@@ -44,15 +44,13 @@ if (!defined('STATUSNET')) {
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  * @link      http://status.net/
  */
-
-class UnfollowListItem extends NoticeListItemAdapter
+class UnfollowListItem extends SystemListItem
 {
     /**
      * Show the join activity
      *
      * @return void
      */
-    
     function showNotice()
     {
         $out = $this->nli->out;
@@ -65,14 +63,13 @@ class UnfollowListItem extends NoticeListItemAdapter
     {
         $notice = $this->nli->notice;
         $out    = $this->nli->out;
-               
+
                // FIXME: get the actual data on the leave
-               
+
         $out->elementStart('div', 'unfollow-activity');
 
         $out->raw($notice->rendered);
-        
+
         $out->elementEnd('div');
-    } 
+    }
 }
-