diff options
author | Zach Copley <zach@status.net> | 2009-11-04 21:08:47 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-04 21:08:47 -0800 |
commit | f28795656f9250707b2180c93fe9946d5066017b (patch) | |
tree | 58d627d307c31572dc87b509cef98e526a1d491a /actions/apifriendshipsexists.php | |
parent | 527427d3e0752a371b1b6421dabec5cc1c7e19ad (diff) |
Remove ugly debugging statements
Diffstat (limited to 'actions/apifriendshipsexists.php')
-rw-r--r-- | actions/apifriendshipsexists.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/actions/apifriendshipsexists.php b/actions/apifriendshipsexists.php index ae50c512c..2910f7ead 100644 --- a/actions/apifriendshipsexists.php +++ b/actions/apifriendshipsexists.php @@ -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; |