Update settings/ajax/removegroup.php

$l->t added for error message
This commit is contained in:
Thomas Müller 2012-09-04 12:50:16 +03:00
parent b49e8cd04d
commit 04aea1eb2e
1 changed files with 1 additions and 1 deletions

View File

@ -13,5 +13,5 @@ if( OC_Group::deleteGroup( $name )) {
OC_JSON::success(array("data" => array( "groupname" => $name )));
}
else{
OC_JSON::error(array("data" => array( "message" => "Unable to delete group" )));
OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete group") )));
}