Skip to content

Commit

Permalink
Dev: Small fix for gT and sprintf
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Aug 5, 2016
1 parent 47000dd commit dd42e9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/update/updatedb_helper.php
Expand Up @@ -1437,7 +1437,7 @@ function db_upgrade_all($iOldDBVersion, $bSilent=false) {
$superadmins = User::model()->getSuperAdmins();
Notification::broadcast(array(
'title' => gT('Database update'),
'message' => gT(sprintf('The database has been updated from version %s to version %s.', $iOldDBVersion, '259'))
'message' => sprintf(gT('The database has been updated from version %s to version %s.'), $iOldDBVersion, '259')
), $superadmins);

}
Expand Down

0 comments on commit dd42e9b

Please sign in to comment.