diff --git a/ajax/addproperty.php b/ajax/addproperty.php index c1fca9ab..f888b94e 100644 --- a/ajax/addproperty.php +++ b/ajax/addproperty.php @@ -23,15 +23,6 @@ // Check if we are a user OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('contacts'); -foreach($_SERVER as $key=>$value) { - OCP\Util::writeLog('contacts','ajax/saveproperty.php: _SERVER: '.$key.'=>'.print_r($value, true), OCP\Util::DEBUG); -} -foreach($_POST as $key=>$value) { - OCP\Util::writeLog('contacts','ajax/saveproperty.php: _POST: '.$key.'=>'.print_r($value, true), OCP\Util::DEBUG); -} -foreach($_GET as $key=>$value) { - OCP\Util::writeLog('contacts','ajax/saveproperty.php: _GET: '.$key.'=>'.print_r($value, true), OCP\Util::DEBUG); -} OCP\JSON::callCheck(); function bailOut($msg) { diff --git a/ajax/saveproperty.php b/ajax/saveproperty.php index c779c496..6ee9ec90 100644 --- a/ajax/saveproperty.php +++ b/ajax/saveproperty.php @@ -32,16 +32,6 @@ function debug($msg) { // Check if we are a user OCP\JSON::checkLoggedIn(); OCP\JSON::checkAppEnabled('contacts'); - -foreach($_SERVER as $key=>$value) { - debug('_SERVER: '.$key.'=>'.print_r($value, true)); -} -foreach($_POST as $key=>$value) { - debug('_POST: '.$key.'=>'.print_r($value, true)); -} -foreach($_GET as $key=>$value) { - debug('_GET: '.$key.'=>'.print_r($value, true)); -} OCP\JSON::callCheck(); $id = isset($_POST['id'])?$_POST['id']:null;