diff options
author | INOPIAE <inopiae@cacert.org> | 2014-10-29 08:25:56 +0100 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2015-01-25 13:14:17 +0100 |
commit | 7c5a95f284ca997acf2b399f2d6874f0a61289b2 (patch) | |
tree | e9410d86bd02146c9a31e03604531b9c14e6f284 | |
parent | 5f97d8d4c53c725eeead0a766f0ee89644a90cc8 (diff) | |
download | cacert-devel-7c5a95f284ca997acf2b399f2d6874f0a61289b2.tar.gz cacert-devel-7c5a95f284ca997acf2b399f2d6874f0a61289b2.tar.xz cacert-devel-7c5a95f284ca997acf2b399f2d6874f0a61289b2.zip |
bug 649: correction of id/oldid handling
-rw-r--r-- | www/wot.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/wot.php b/www/wot.php index 53bf87d..a6637ac 100644 --- a/www/wot.php +++ b/www/wot.php @@ -570,11 +570,11 @@ $iecho= "c"; exit; } // Assurer Check - if($oldid == 16 ) + if($oldid == 17 ) { - $oldid=0; - $id = 0; - $number=5; + $oldid = 0; + $id = 17; + $number = 5; $email = mysql_real_escape_string(trim($_REQUEST['email'])); $reason = mysql_real_escape_string(trim($_REQUEST['reason'])); $uid = get_user_id_from_email($email); |