summaryrefslogtreecommitdiff
path: root/it_user.class
diff options
context:
space:
mode:
Diffstat (limited to 'it_user.class')
-rw-r--r--it_user.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it_user.class b/it_user.class
index 75fc52e..ccbcfc2 100644
--- a/it_user.class
+++ b/it_user.class
@@ -353,7 +353,7 @@ function create_password($length = 8, $charset = 'abcdefghjkpqrstuvwxyz23456789A
function crypt_password($password)
{
$result = $this->query("SELECT PASSWORD(" . $this->escape_string($password) . ")");
- list($pw) = mysql_fetch_array($result);
+ list($pw) = mysqli_fetch_array($result);
return $pw;
}