]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Remove ugly debugging statements
authorZach Copley <zach@status.net>
Thu, 5 Nov 2009 05:08:47 +0000 (21:08 -0800)
committerZach Copley <zach@status.net>
Thu, 5 Nov 2009 05:08:47 +0000 (21:08 -0800)
actions/apifriendshipsexists.php

index ae50c512c81b62fe8006b723affe25a6b96ffbcb..2910f7eadc0bdd205b0552e90a257116d2e34934 100644 (file)
@@ -69,16 +69,7 @@ class ApiFriendshipsExistsAction extends ApiAction
         $user_a_id = $this->trimmed('user_a');
         $user_b_id = $this->trimmed('user_b');
 
-        common_debug("user_a = " . $user_a_id);
-        common_debug("user_b = " . $user_b_id);
-
-
         $this->user_a = $this->getTargetUser($user_a_id);
-
-        if (empty($this->user_a)) {
-            common_debug('gargargra');
-        }
-
         $this->user_b = $this->getTargetUser($user_b_id);
 
         return true;