diff options
author | INOPIAE <inopiae@cacert.org> | 2013-01-18 00:59:21 +0100 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-01-18 00:59:21 +0100 |
commit | 6c7abe807dda81e8284876ba91f9e3d267285eff (patch) | |
tree | ed1d7e9ceb9a050f1b3b6e51c8677de4bd47ab63 /pages/wot | |
parent | 067e6fb1cc50c876bfe9cab04bc73b880fecd5d2 (diff) | |
download | cacert-devel-6c7abe807dda81e8284876ba91f9e3d267285eff.tar.gz cacert-devel-6c7abe807dda81e8284876ba91f9e3d267285eff.tar.xz cacert-devel-6c7abe807dda81e8284876ba91f9e3d267285eff.zip |
bug 1137: added date check and fixed some typos
Diffstat (limited to 'pages/wot')
-rw-r--r-- | pages/wot/6.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/wot/6.php b/pages/wot/6.php index 8fd4207..a1f7489 100644 --- a/pages/wot/6.php +++ b/pages/wot/6.php @@ -46,11 +46,11 @@ AssureTextLine(_("Name"),$name); AssureTextLine(_("Date of Birth"),$dob." ("._("YYYY-MM-DD").")"); AssureMethodLine(_("Method"),$methods,''); - AssureBoxLine("certify",sprintf(_("I certify that %s %s %s has appeared in person"), $fname, $mname, $lname),array_key_exists('certify',$_POST) && $_POST['certify'] == 1); - AssureBoxLine("CCAAgreed",sprintf(_("I verify that %s %s %s accepted the CAcert Community Agreement."), $fname, $mname, $lname),array_key_exists('CCAAgreed',$_POST) && $_POST['CCAAgreed'] == 1); + AssureBoxLine("certify",sprintf(_("I certify that %s %s %s has appeared in person."), $fname, $mname, $lname),array_key_exists('certify',$_POST) && $_POST['certify'] == 1); + AssureBoxLine("CCAAgreed",sprintf(_("I verify that %s %s %s has accepted the CAcert Community Agreement."), $fname, $mname, $lname),array_key_exists('CCAAgreed',$_POST) && $_POST['CCAAgreed'] == 1); AssureInboxLine("location",_("Location"),array_key_exists('location',$_SESSION['_config'])?$_SESSION['_config']['location']:"",""); - AssureInboxLine("date",_("Date"),array_key_exists('date',$_SESSION['_config'])?$_SESSION['_config']['date']:date("Y-m-d"),"<br/>"._("The date when the assurance took place. Please adjust the date if you assured the person on a different day")); - AssureTextLine(_("","Only tick the next box if the Assurance was face to face.")); + AssureInboxLine("date",_("Date"),array_key_exists('date',$_SESSION['_config'])?$_SESSION['_config']['date']:date("Y-m-d"),"<br/>"._("The date when the assurance took place. Please adjust the date if you assured the person on a different day (YYYY-MM-DD).")); + AssureTextLine("",_("Only tick the next box if the Assurance was face to face.")); AssureBoxLine("assertion",_("I believe that the assertion of identity I am making is correct, complete and verifiable. I have seen original documentation attesting to this identity. I accept that the CAcert Arbitrator may call upon me to provide evidence in any dispute, and I may be held responsible."),array_key_exists('assertion',$_POST) && $_POST['assertion'] == 1); AssureBoxLine("rules",_("I have read and understood the CAcert Community Agreement (CCA), Assurance Policy and the Assurance Handbook. I am making this Assurance subject to and in compliance with the CCA, Assurance policy and handbook."),array_key_exists('rules',$_POST) && $_POST['rules'] == 1); AssureTextLine(_("Policy"),"<a href=\"/policy/CAcert Community Agreement.php\" target=\"_blank\">"._("CAcert Community Agreement")."</a> -<a href=\"/policy/AssurancePolicy.php\" target=\"_blank\">"._("Assurance Policy")."</a> - <a href=\"http://wiki.cacert.org/AssuranceHandbook2\" target=\"_blank\">"._("Assurance Handbook")."</a>"); |