diff options
author | INOPIAE <inopiae@cacert.org> | 2013-01-07 18:20:52 +0100 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-01-07 18:20:52 +0100 |
commit | 9f09e36c1aebfc4677ac1b9cff2f37b88dc23a5a (patch) | |
tree | 43ead7bd65e8bd058a71256573a05084fe4a7cee | |
parent | 5cbce7196f5b5feb61a06e72bf2175fa934ba584 (diff) | |
download | cacert-devel-9f09e36c1aebfc4677ac1b9cff2f37b88dc23a5a.tar.gz cacert-devel-9f09e36c1aebfc4677ac1b9cff2f37b88dc23a5a.tar.xz cacert-devel-9f09e36c1aebfc4677ac1b9cff2f37b88dc23a5a.zip |
bug 893: Fixed typo in includes/temp_functions.php dres ->$res
-rw-r--r-- | includes/temp_functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/temp_functions.php b/includes/temp_functions.php index c4023cf..30fe76a 100644 --- a/includes/temp_functions.php +++ b/includes/temp_functions.php @@ -77,7 +77,7 @@ function account_delete($id, $arbno, $adminid){ //delete all other email address $query = "select * from `email` where `memid`='".$id."' and `memid`='".$emailid."'" ; $res=mysql_query($query); - while($row = mysql_fetch_assoc(dres)){ + while($row = mysql_fetch_assoc($res)){ account_email_delete($row['id']); } |