diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/index.php b/install/index.php index 6844241..1bb4bdd 100644 --- a/install/index.php +++ b/install/index.php @@ -177,7 +177,7 @@ if (isset($_GET['password_cost'])) { $start = $end = 0; for ($cost = 10; $end - $start < $target; $cost++) { $start = microtime(true); - user::hash('test', $cost); + User::hash('test', $cost); $end = microtime(true); } echo "Password cost suggestion: $cost.<br/>You can set this in classes/constants.php."; |