Skip to content

Commit

Permalink
Merge pull request #335 from gmambro/php53
Browse files Browse the repository at this point in the history
Fixed issue 09706: Wrong minimum PHP version in installer
  • Loading branch information
c-schmitz committed Jun 30, 2015
2 parents 6e8fe09 + c90606e commit 54fef44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/Token.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public function generateTokens() {
}
if($bIsValidToken)
{
$itresult = $this->updateByPk($tkrow['tid'], ['token' => $newtoken]);
$itresult = $this->updateByPk($tkrow['tid'], array('token' => $newtoken));
$newtokencount++;
}
else
Expand Down

0 comments on commit 54fef44

Please sign in to comment.