diff options
| author | Tristan Zur <steckbrief@geekmail.de> | 2018-12-20 21:56:10 +0100 |
|---|---|---|
| committer | Tristan Zur <steckbrief@geekmail.de> | 2018-12-20 21:56:10 +0100 |
| commit | a3df66971450fbfdcbd3b6e46e5db7c1a8da68f4 (patch) | |
| tree | 6fdbf9581d11cd70d9636a38c22aff75733a78fb /modules/user | |
| parent | 28b602bb588aba37606821cf980efe911eadb442 (diff) | |
makes notification PHP7 compatible
Diffstat (limited to 'modules/user')
| -rw-r--r-- | modules/user/lib/PasswordHash.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/lib/PasswordHash.php b/modules/user/lib/PasswordHash.php index d6783c0..62bc056 100644 --- a/modules/user/lib/PasswordHash.php +++ b/modules/user/lib/PasswordHash.php @@ -30,7 +30,7 @@ class PasswordHash { var $portable_hashes; var $random_state; - function PasswordHash($iteration_count_log2, $portable_hashes) + function __construct($iteration_count_log2, $portable_hashes) { $this->itoa64 = './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; |
