Respect coding style

This commit is contained in:
Thomas Müller 2012-09-04 13:21:00 +03:00
parent ff8b8909c1
commit ae67841461
1 changed files with 3 additions and 3 deletions

View 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;