Skip to content

Commit

Permalink
Fixed issue #11713: Unclear message when setting an expiration date
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Sep 27, 2016
1 parent bf81cc0 commit 4348c76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/controllers/survey/index.php
Expand Up @@ -278,7 +278,7 @@ function action()
$redata = compact(array_keys(get_defined_vars()));
$asMessage = array(
gT("Error"),
gT("This survey is no longer available."),
gT("We are sorry but the survey is expired and no longer available."),
sprintf(gT("Please contact %s ( %s ) for further assistance."),$thissurvey['adminname'],$thissurvey['adminemail'])
);

Expand Down Expand Up @@ -334,7 +334,7 @@ function action()
$sLoadSecurity=Yii::app()->request->getPost('loadsecurity');
$captcha = Yii::app()->getController()->createAction('captcha');
$captchaCorrect = $captcha->validate( $sLoadsecurity, false);

if(empty($sLoadSecurity))
{
$errormsg .= gT("You did not answer to the security question.")."<br />\n";
Expand Down

0 comments on commit 4348c76

Please sign in to comment.