Skip to content

Commit

Permalink
Dev Some text fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jul 19, 2018
1 parent 9187ac4 commit da23693
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/controllers/SurveysController.php
Expand Up @@ -80,13 +80,13 @@ public function actionError()
break;
case '401':
$title = gT('401: Unauthorized');
$message = gT('You must be loggued to access to this page.');
$message = gT('You must be logged in to access to this page.');
// $loginurl = $this->getController()->createUrl("/admin/login")
// header('WWW-Authenticate: MyAuthScheme realm="'.$loginurl.'"');
break;
case '403':
$title = gT('403: Forbidden');
$message = gT('You do not have the proper credential to access this page.');
$message = gT('You do not have the permission to access this page.');
break;
case '404':
$title = gT('404: Not Found');
Expand Down

0 comments on commit da23693

Please sign in to comment.