diff options
author | Michael Tänzer <neo@nhng.de> | 2013-09-11 01:19:24 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2013-09-11 01:19:24 +0200 |
commit | 9056e57c9c3a2355cfbe870f130befa949c6849b (patch) | |
tree | 4c35d9ae134ecbbe460b3f181f622d0c93373eb2 | |
parent | ff8e88c54bcbfad0084834f82b798b8a3f35817d (diff) | |
download | cacert-devel-9056e57c9c3a2355cfbe870f130befa949c6849b.tar.gz cacert-devel-9056e57c9c3a2355cfbe870f130befa949c6849b.tar.xz cacert-devel-9056e57c9c3a2355cfbe870f130befa949c6849b.zip |
Bug 1137: Actually record the CCA agreement on Assurance
Signed-off-by: Michael Tänzer <neo@nhng.de>
-rw-r--r-- | www/wot.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/www/wot.php b/www/wot.php index 9b6bd27..a0af1f6 100644 --- a/www/wot.php +++ b/www/wot.php @@ -371,7 +371,8 @@ $iecho= "c"; `when`=NOW()"; //record active acceptance by Assurer if (check_date_format(trim($_REQUEST['date']),2010)) { - write_user_agreement($_SESSION['profile']['id'], "CCA", "Assurance", "Assurer", 1, $_SESSION['_config']['notarise']['id']); + write_user_agreement($_SESSION['profile']['id'], "CCA", "assurance", "Assuring", 1, $_SESSION['_config']['notarise']['id']); + write_user_agreement($_SESSION['_config']['notarise']['id'], "CCA", "assurance", "Being assured", 0, $_SESSION['profile']['id']); } if($_SESSION['profile']['ttpadmin'] == 1 && ($_POST['method'] == 'Trusted 3rd Parties' || $_POST['method'] == 'Trusted Third Parties')) { $query .= ",\n`method`='TTP-Assisted'"; @@ -379,10 +380,6 @@ $iecho= "c"; mysql_query($query); fix_assurer_flag($_SESSION['_config']['notarise']['id']); include_once("../includes/notary.inc.php"); -/*to be activated after CCA accept option is implemented in form - write_user_agreement($_SESSION['profile']['id'], "CCA", "assurance", "Assuring", 1, $_SESSION['_config']['notarise']['id']);}*/ -/* to be activated after the CCA recording is announced - write_user_agreement($_SESSION['_config']['notarise']['id'], "CCA", "assurance", "Being assured", 0, $_SESSION['profile']['id']); */ if($_SESSION['profile']['points'] < 150) { |