From: Michael Gapczynski Date: Wed, 25 Apr 2012 15:54:16 +0000 (-0400) Subject: Forgot to remove error log messages... X-Git-Tag: v4.0.0beta~194 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7d9587bab339fac0f8789d57180520a7d8e0a85c;p=nextcloud-server.git Forgot to remove error log messages... --- diff --git a/apps/files_sharing/ajax/toggleresharing.php b/apps/files_sharing/ajax/toggleresharing.php index fd16b208be1..72af1eedec1 100644 --- a/apps/files_sharing/ajax/toggleresharing.php +++ b/apps/files_sharing/ajax/toggleresharing.php @@ -4,12 +4,9 @@ require_once('../../../lib/base.php'); OC_JSON::checkAppEnabled('files_sharing'); OC_JSON::checkAdminUser(); -error_log($_POST['resharing']); if ($_POST['resharing'] == true) { - error_log("enabling"); OC_Appconfig::setValue('files_sharing', 'resharing', 'yes'); } else { - error_log("disabling"); OC_Appconfig::setValue('files_sharing', 'resharing', 'no'); }