Merge "Omit 'external' changes from ChangesFeed"
[lhc/web/wiklou.git] / includes / password / Pbkdf2Password.php
index 417753f..080e3b0 100644 (file)
@@ -51,8 +51,8 @@ class Pbkdf2Password extends ParameterizedPassword {
                                $this->params['algo'],
                                $password,
                                base64_decode( $this->args[0] ),
-                               $this->params['rounds'],
-                               $this->params['length'],
+                               (int)$this->params['rounds'],
+                               (int)$this->params['length'],
                                true
                        );
                } else {