diff options
author | dirk <beliebige_email_adresse@fidocon.de> | 2011-11-29 22:57:59 +0100 |
---|---|---|
committer | dirk <beliebige_email_adresse@fidocon.de> | 2011-11-29 22:57:59 +0100 |
commit | 5bcd2df24c59ec82e1b6efc99bcdd5f7a5e05187 (patch) | |
tree | a07effcc8471e2fb96cf549e6e779fad2b5a0674 /www/wot.php | |
parent | 7dd8b7a0ecaa847fb9d48725bce1aa60b006044f (diff) | |
download | cacert-devel-5bcd2df24c59ec82e1b6efc99bcdd5f7a5e05187.tar.gz cacert-devel-5bcd2df24c59ec82e1b6efc99bcdd5f7a5e05187.tar.xz cacert-devel-5bcd2df24c59ec82e1b6efc99bcdd5f7a5e05187.zip |
bug-894 removed check for "rules" checkbox (temporarily)bug-894
Diffstat (limited to 'www/wot.php')
-rw-r--r-- | www/wot.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/www/wot.php b/www/wot.php index 61fbc1b..fe3b93b 100644 --- a/www/wot.php +++ b/www/wot.php @@ -200,12 +200,19 @@ function send_reminder() if($oldid == 6) { $iecho= "c"; - if(!array_key_exists('assertion',$_POST) || $_POST['assertion'] != 1 || !array_key_exists('rules',$_POST) || $_POST['rules'] != 1) + if(!array_key_exists('assertion',$_POST) || $_POST['assertion'] != 1) { show_page("VerifyData","",_("You failed to check all boxes to validate your adherence to the rules and policies of CAcert")); exit; } +/* if(!array_key_exists('rules',$_POST) || $_POST['rules'] != 1) + { + show_page("VerifyData","",_("You failed to check all boxes to validate your adherence to the rules and policies of CAcert")); + exit; + } +*/ + if((!array_key_exists('certify',$_POST) || $_POST['certify'] != 1 ) && $_SESSION['profile']['ttpadmin'] != 1) { show_page("VerifyData","",_("You failed to check all boxes to validate your adherence to the rules and policies of CAcert")); |