Update settings/ajax/removegroup.php

respect coding style
This commit is contained in:
Thomas Müller 2012-09-04 12:49:50 +03:00
parent 16b3ffb588
commit b49e8cd04d
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<?php
// Init owncloud
require_once('../../lib/base.php');
require_once '../../lib/base.php';
OC_JSON::checkAdminUser();
OCP\JSON::callCheck();
@ -9,7 +9,7 @@ OCP\JSON::callCheck();
$name = $_POST["groupname"];
// Return Success story
if( OC_Group::deleteGroup( $name )){
if( OC_Group::deleteGroup( $name )) {
OC_JSON::success(array("data" => array( "groupname" => $name )));
}
else{