diff options
author | raghunayyar <me@iraghu.com> | 2014-02-12 11:00:10 +0530 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-02 12:52:53 +0200 |
commit | c7af9cd6dd81072cf686ec123322c4241322bf73 (patch) | |
tree | 5038f6dc3df76949610f2bdb31c2ca9b3ee3a1e3 /settings/ajax | |
parent | 223e342664d5436f25d49fe4c754d4d5f5a4c832 (diff) | |
download | nextcloud-server-c7af9cd6dd81072cf686ec123322c4241322bf73.tar.gz nextcloud-server-c7af9cd6dd81072cf686ec123322c4241322bf73.zip |
Initial Commit : User Search, Fixes Typos
Diffstat (limited to 'settings/ajax')
-rw-r--r-- | settings/ajax/creategroup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/ajax/creategroup.php b/settings/ajax/creategroup.php index b770aaaf311..0a79527c219 100644 --- a/settings/ajax/creategroup.php +++ b/settings/ajax/creategroup.php @@ -7,7 +7,7 @@ $groupname = $_POST["groupname"]; // Does the group exist? if( in_array( $groupname, OC_Group::getGroups())) { - OC_JSON::error(array("data" => array( "message" => $l->t("Unable to add group") ))); + OC_JSON::error(array("data" => array( "message" => $l->t("Group already exists") ))); exit(); } |