HOR-3841
This commit is contained in:
@@ -27869,6 +27869,12 @@ msgstr "NOT IMPORTED"
|
||||
msgid "CANNOT IMPORT"
|
||||
msgstr "CANNOT IMPORT"
|
||||
|
||||
# TRANSLATION
|
||||
# LABEL/ID_SELECT_USER_OR_GROUP
|
||||
#: LABEL/ID_SELECT_USER_OR_GROUP
|
||||
msgid "Please select the name of a user or a group in the Group or User field"
|
||||
msgstr "Please select the name of a user or a group in the Group or User field"
|
||||
|
||||
# additionalTables/additionalTablesData.xml?ADD_TAB_NAME
|
||||
# additionalTables/additionalTablesData.xml
|
||||
#: text - ADD_TAB_NAME
|
||||
|
||||
@@ -6185,7 +6185,8 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
||||
( 'LABEL','ID_CASE_ROUTED_TO','en','Case routed to','2017-06-02'),
|
||||
( 'LABEL','ID_IMPORTED','en','IMPORTED','2017-10-03'),
|
||||
( 'LABEL','ID_NOT_IMPORTED','en','NOT IMPORTED','2017-10-03'),
|
||||
( 'LABEL','ID_CANNOT_IMPORT','en','CANNOT IMPORT','2017-10-03');
|
||||
( 'LABEL','ID_CANNOT_IMPORT','en','CANNOT IMPORT','2017-10-03'),
|
||||
( 'LABEL','ID_SELECT_USER_OR_GROUP','en','Please select the name of a user or a group in the Group or User field','2017-10-19');
|
||||
|
||||
INSERT INTO ISO_LOCATION (IC_UID,IL_UID,IL_NAME,IL_NORMAL_NAME,IS_UID) VALUES
|
||||
('AD','','',' ','') ,
|
||||
|
||||
@@ -381,7 +381,7 @@ class ProcessPermissions
|
||||
{
|
||||
$usr_uid = trim($usr_uid);
|
||||
if ($usr_uid == '') {
|
||||
throw (new \Exception(\G::LoadTranslation("ID_USER_NOT_EXIST", array('usr_uid',''))));
|
||||
throw (new \Exception(\G::LoadTranslation("ID_SELECT_USER_OR_GROUP")));
|
||||
}
|
||||
$oUsers = new \Users();
|
||||
if (!($oUsers->userExists($usr_uid))) {
|
||||
@@ -403,7 +403,7 @@ class ProcessPermissions
|
||||
{
|
||||
$grp_uid = trim($grp_uid);
|
||||
if ($grp_uid == '') {
|
||||
throw (new \Exception(\G::LoadTranslation("ID_GROUP_NOT_EXIST", array('grp_uid',''))));
|
||||
throw (new \Exception(\G::LoadTranslation("ID_SELECT_USER_OR_GROUP")));
|
||||
}
|
||||
$oGroup = new \Groupwf();
|
||||
if (!($oGroup->GroupwfExists($grp_uid))) {
|
||||
|
||||
Reference in New Issue
Block a user