From cbcda49ee373225a5a4a6cd605ad585735aa29a3 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 16 Apr 2014 17:33:56 +0200 Subject: [PATCH] get translations from settings, not core --- settings/ajax/changegroupname.php | 4 ++-- settings/ajax/creategroup.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/settings/ajax/changegroupname.php b/settings/ajax/changegroupname.php index a70440c0e4e..9bb3c0af125 100644 --- a/settings/ajax/changegroupname.php +++ b/settings/ajax/changegroupname.php @@ -4,13 +4,13 @@ OCP\JSON::callCheck(); OCP\JSON::checkLoggedIn(); OCP\JSON::checkAdminUser(); -$l=OC_L10N::get('core'); +$l=OC_L10N::get('settings'); $groupname = $_POST["groupname"]; // Return Success story // TODO : make changes to the API to allow this. -// setGroupname doesnt exist yet. +// setGroupname doesnt exist yet. if(OC_Group::setGroupname($groupname)) { OCP\JSON::success( array("data" => array( diff --git a/settings/ajax/creategroup.php b/settings/ajax/creategroup.php index f78d123270e..854f2c37189 100644 --- a/settings/ajax/creategroup.php +++ b/settings/ajax/creategroup.php @@ -4,7 +4,7 @@ OCP\JSON::callCheck(); OC_JSON::checkAdminUser(); $groupname = $_POST["groupname"]; -$l = OC_L10N::get('core'); +$l = OC_L10N::get('settings'); // Does the group exist? if( in_array( $groupname, OC_Group::getGroups())) { -- 2.39.5