Skip to content

Commit

Permalink
Dev Text fix
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jan 13, 2023
1 parent bf9737c commit 54ee113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/SurveyPermissionsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public function actionAddUserGroup($surveyid)
Yii::app()->user->setFlash('error', gT("No users from group could be added."));
$this->redirect(['surveyPermissions/index', 'surveyid' => $surveyid]);
} else {
Yii::app()->user->setFlash('success', $amountUsersAdded . ' ' . gT("users from group could be added"));
Yii::app()->user->setFlash('success', sprintf("%s users from group were added.", $amountUsersAdded));

This comment has been minimized.

Copy link
@olleharstedt

olleharstedt Jan 25, 2023

Collaborator

You removed the gT call :(

$this->redirect(array(
'surveyPermissions/settingsPermissions',
'surveyid' => $surveyid,
Expand Down

0 comments on commit 54ee113

Please sign in to comment.