summaryrefslogtreecommitdiffstats
path: root/settings/ajax/removegroup.php
diff options
context:
space:
mode:
Diffstat (limited to 'settings/ajax/removegroup.php')
-rw-r--r--settings/ajax/removegroup.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/ajax/removegroup.php b/settings/ajax/removegroup.php
index f8c2065956c..cd1b8faf263 100644
--- a/settings/ajax/removegroup.php
+++ b/settings/ajax/removegroup.php
@@ -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{