]> source.dussan.org Git - nextcloud-server.git/commitdiff
Respect coding style
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 10:21:00 +0000 (13:21 +0300)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 10:21:00 +0000 (13:21 +0300)
core/ajax/vcategories/delete.php

index a41fa083c3889c914d6b4b23a0395ec3d94c5741..cd46a25b79df9d898debabb4b49432389fa610a6 100644 (file)
@@ -8,14 +8,14 @@
 
 function bailOut($msg) {
        OC_JSON::error(array('data' => array('message' => $msg)));
-       OC_Log::write('core','ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG);
+       OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG);
        exit();
 }
 function debug($msg) {
-       OC_Log::write('core','ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG);
+       OC_Log::write('core', 'ajax/vcategories/delete.php: '.$msg, OC_Log::DEBUG);
 }
 
-require_once('../../../lib/base.php');
+require_once '../../../lib/base.php';
 OC_JSON::checkLoggedIn();
 $app = isset($_POST['app'])?$_POST['app']:null;
 $categories = isset($_POST['categories'])?$_POST['categories']:null;