From 2cef5954d09a76d0aa49bed073e98a10e7855948 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 13 Jul 2017 16:26:40 -0700 Subject: [PATCH] Web RPC interface: comment out debugging stuff --- html/inc/web_rpc_api.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/inc/web_rpc_api.inc b/html/inc/web_rpc_api.inc index 1ce863dff1..d6d1c62d85 100644 --- a/html/inc/web_rpc_api.inc +++ b/html/inc/web_rpc_api.inc @@ -74,10 +74,10 @@ function create_account( ) { $url = $project_url."/create_account.php?email_addr=".urlencode($email_addr)."&passwd_hash=$passwd_hash&user_name=".urlencode($user_name); - echo "url: $url\n"; + //echo "url: $url\n"; $reply = fetch_url($url); if (!$reply) return array(null, -1, "HTTP error"); - echo "reply: $reply\n"; + //echo "reply: $reply\n"; $r = @simplexml_load_string($reply); if (!$r) { return array(null, -1, "Can't parse reply XML:\n$reply");