Skip to content

Commit

Permalink
Fixed issue #9381: Bug when showing message of invalid token
Browse files Browse the repository at this point in the history
  • Loading branch information
Aestu authored and c-schmitz committed Dec 2, 2014
1 parent 6d86ea6 commit 85fc561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/survey/index.php
Expand Up @@ -386,7 +386,7 @@ function action()
{
$sError = gT("This invitation is not valid yet.");
}
elseif(strtotime($now)>strtotime($oToken->validfrom))
elseif(strtotime($now) > strtotime($oToken->validuntil))
{
$sError = gT("This invitation is not valid anymore.");
}
Expand Down

0 comments on commit 85fc561

Please sign in to comment.