]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Remove debugging statements
authorZach Copley <zach@status.net>
Wed, 29 Sep 2010 23:28:29 +0000 (16:28 -0700)
committerZach Copley <zach@status.net>
Wed, 29 Sep 2010 23:28:29 +0000 (16:28 -0700)
plugins/AnonymousFave/AnonymousFavePlugin.php
plugins/AnonymousFave/Fave_tally.php

index 47eebef9bae187b3dbb064296bb1c088ca173b4a..72093e7f7e70efbff4bbe9ef46cb177c1415b298 100644 (file)
@@ -216,7 +216,7 @@ class AnonymousFavePlugin extends Plugin {
         $id = $profile->insert();
 
         if (!$id) {
-            throw new ServerException(_m("Couldn't create anonymous user session"));
+            throw new ServerException(_m("Couldn't create anonymous user session."));
         }
 
         // Stick the Profile ID into the nickname
@@ -226,7 +226,7 @@ class AnonymousFavePlugin extends Plugin {
         $result = $profile->update($orig);
 
         if (!$result) {
-            throw new ServerException(_m("Couldn't create anonymous user session"));
+            throw new ServerException(_m("Couldn't create anonymous user session."));
         }
 
         common_log(
index 35ace6d01ba7514731edd179ae82afcef400f714..b350d5a0a5feb303fd70468adfdd11e2e61c7235 100644 (file)
@@ -149,7 +149,6 @@ class Fave_tally extends Memcached_DataObject
 
     static function increment($noticeID)
     {
-        common_debug("XXXXXXXXX Fave_tally::increment()");
         $tally = Fave_tally::ensureTally($noticeID);
 
         $orig = clone($tally);
@@ -177,8 +176,6 @@ class Fave_tally extends Memcached_DataObject
 
     static function decrement($noticeID)
     {
-        common_debug("XXXXXXXXX Fave_tally::decrement()");
-
         $tally = Fave_tally::ensureTally($noticeID);
 
         if ($tally->count > 0) {
@@ -212,7 +209,6 @@ class Fave_tally extends Memcached_DataObject
         $tally = Fave_tally::staticGet('notice_id', $noticeID);
 
         if (!$tally) {
-            common_debug("Fave_tally::ensureTally - creating tally for notice " . $noticeID);
             $tally = new Fave_tally();
             $tally->notice_id = $noticeID;
             $tally->count = Fave_tally::countExistingFaves($noticeID);
@@ -243,9 +239,6 @@ class Fave_tally extends Memcached_DataObject
         $fave = new Fave();
         $fave->notice_id = $noticeID;
         $total = $fave->count();
-
-        common_debug("ZZZZZZZ notice " . $noticeID . ' has ' . $total . " faves");
-
         return $total;
     }
 }