diff options
author | INOPIAE <inopiae@cacert.org> | 2013-01-12 20:36:39 +0100 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-01-12 20:36:39 +0100 |
commit | 848f023d1ee4674149797411ded9c5a9b67a266f (patch) | |
tree | 0cc62de789299c74063bc03cccd224404d77c5a2 | |
parent | f6443037cc24fd3bee7c111095ea5b183f7299b6 (diff) | |
download | cacert-devel-848f023d1ee4674149797411ded9c5a9b67a266f.tar.gz cacert-devel-848f023d1ee4674149797411ded9c5a9b67a266f.tar.xz cacert-devel-848f023d1ee4674149797411ded9c5a9b67a266f.zip |
bug 1133: small adjustment in if statememnt
-rw-r--r-- | www/wot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/wot.php b/www/wot.php index 31b94e0..6ee014d 100644 --- a/www/wot.php +++ b/www/wot.php @@ -150,7 +150,7 @@ function send_reminder() { $query = "select * from `users` where `email`='".mysql_escape_string(stripslashes($_POST['email']))."' and `locked`=1"; $res = mysql_query($query); - if(mysql_num_rows($res) != 1) + if(mysql_num_rows($res) >= 1) { $_SESSION['_config']['noemailfound'] = 0; show_page("EnterEmail","",_("This account is locked and can not be assured. For more information ask support@cacert.org.")); |