]> source.dussan.org Git - nextcloud-server.git/commitdiff
Forgot to remove error log messages...
authorMichael Gapczynski <GapczynskiM@gmail.com>
Wed, 25 Apr 2012 15:54:16 +0000 (11:54 -0400)
committerMichael Gapczynski <GapczynskiM@gmail.com>
Wed, 25 Apr 2012 15:54:16 +0000 (11:54 -0400)
apps/files_sharing/ajax/toggleresharing.php

index fd16b208be11e63d20234b4c26457473dd8b9143..72af1eedec119bc8cd86c89fda352033aa65918f 100644 (file)
@@ -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');
 }