Skip to content

Commit

Permalink
Dev: Fixed : not translated string in PrintanswersController
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnoulle committed Mar 19, 2017
1 parent d7201c7 commit 0b3d847
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/PrintanswersController.php
Expand Up @@ -98,7 +98,7 @@ function actionView($surveyid,$printableexport=FALSE)
//Ensure Participants printAnswer setting is set to true or that the logged user have read permissions over the responses.
if ($aSurveyInfo['printanswers'] == 'N' && !Permission::model()->hasSurveyPermission($iSurveyID,'responses','read'))
{
throw new CHttpException(401, 'You are not allowed to print answers.');
throw new CHttpException(401, gT('You are not allowed to print answers.'));
}

//CHECK IF SURVEY IS ACTIVATED AND EXISTS
Expand Down

0 comments on commit 0b3d847

Please sign in to comment.