diff options
| author | Camil Staps | 2016-08-01 11:54:56 +0200 |
|---|---|---|
| committer | Camil Staps | 2016-08-01 11:54:56 +0200 |
| commit | 99a0a7c1829a2ba4f8349f66e7047963eba4e4b1 (patch) | |
| tree | 33c5608926e444d56ffc4abf53e9f872cd11c4b5 /install | |
| parent | Several fixes (diff) | |
Fix lowercase class names
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."; |
