]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Left a couple debugging statements in (removed)
authorZach Copley <zach@status.net>
Thu, 24 Sep 2009 22:28:25 +0000 (15:28 -0700)
committerZach Copley <zach@status.net>
Thu, 24 Sep 2009 22:28:25 +0000 (15:28 -0700)
actions/userrss.php

index e6f69709247c9e68dc0a47e37052d8651eb1951c..19e610551d4bca2ec9cf65defde29b7e003a76de 100644 (file)
@@ -67,7 +67,6 @@ class UserrssAction extends Rss10Action
         $user = $this->user;
         
         if (is_null($user)) {
-            common_debug('null user');
             return null;
         }
 
@@ -75,7 +74,6 @@ class UserrssAction extends Rss10Action
 
         $notices = array();
         while ($notice->fetch()) {
-            common_debug("notice");
             $notices[] = clone($notice);
         }