aboutsummaryrefslogtreecommitdiffstats
path: root/identification.php
diff options
context:
space:
mode:
Diffstat (limited to 'identification.php')
-rw-r--r--identification.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/identification.php b/identification.php
index 336879fe4..89698bee7 100644
--- a/identification.php
+++ b/identification.php
@@ -39,7 +39,7 @@ SELECT id, password
FROM '.USERS_TABLE.'
WHERE username = \''.$_POST['username'].'\'
;';
- $row = mysql_fetch_array(mysql_query($query));
+ $row = mysql_fetch_array(pwg_query($query));
if ($row['password'] == md5($_POST['password']))
{
$session_length = $conf['session_length'];