]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove debug code from replies
authorEvan Prodromou <evan@controlyourself.ca>
Sat, 30 May 2009 07:02:26 +0000 (03:02 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Sat, 30 May 2009 07:02:26 +0000 (03:02 -0400)
classes/User.php

index b5ac7b22061d7fbbb37c9fc7d9d019fee1c2224d..59451258ec881c44e6fad7886829132afc85e114 100644 (file)
@@ -403,7 +403,6 @@ class User extends Memcached_DataObject
     function getReplies($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
     {
         $ids = Reply::stream($this->id, $offset, $limit, $since_id, $before_id, $since);
-        common_debug("Ids = " . implode(',', $ids));
         return Notice::getStreamByIds($ids);
     }