]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Remove debugging statements I accidentally left in
authorZach Copley <zach@status.net>
Thu, 17 Feb 2011 00:21:31 +0000 (16:21 -0800)
committerZach Copley <zach@status.net>
Thu, 17 Feb 2011 00:21:31 +0000 (16:21 -0800)
classes/Notice.php

index ed1aab0014a4ab6242994c0eed259b871e9b21d3..007eb55f858c9918b95d408581538be074489ac8 100644 (file)
@@ -1252,8 +1252,6 @@ class Notice extends Memcached_DataObject
 
     function asActivity()
     {
-                common_debug("a");
-
         $act = self::cacheGet(Cache::codeKey('notice:as-activity:'.$this->id));
 
         if (!empty($act)) {
@@ -1264,7 +1262,6 @@ class Notice extends Memcached_DataObject
         if (Event::handle('StartNoticeAsActivity', array($this, &$act))) {
 
             $profile = $this->getProfile();
-            common_debug('b');
             $act->actor     = ActivityObject::fromProfile($profile);
             $act->verb      = ActivityVerb::POST;
             $act->objects[] = ActivityObject::fromNotice($this);