diff options
author | Michael Tänzer <neo@nhng.de> | 2014-06-21 23:56:28 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-06-21 23:56:28 +0200 |
commit | 7fbd25520ae6d4920453961728b115d8a974eb97 (patch) | |
tree | e799a9172825a9c38b8f4c3acfba58b19d7a74b5 /pages/wot/6.php | |
parent | 98d7e6833b3fb094d88b8aea74077e6f646665e8 (diff) | |
download | cacert-devel-7fbd25520ae6d4920453961728b115d8a974eb97.tar.gz cacert-devel-7fbd25520ae6d4920453961728b115d8a974eb97.tar.xz cacert-devel-7fbd25520ae6d4920453961728b115d8a974eb97.zip |
bug 1226: Treat the date values as integer
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'pages/wot/6.php')
-rw-r--r-- | pages/wot/6.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/wot/6.php b/pages/wot/6.php index 6934d0f..200a526 100644 --- a/pages/wot/6.php +++ b/pages/wot/6.php @@ -24,9 +24,9 @@ } $row = $_SESSION['_config']['notarise']; - $_SESSION['assuresomeone']['year'] = ''; - $_SESSION['assuresomeone']['month'] = ''; - $_SESSION['assuresomeone']['day'] = ''; + $_SESSION['assuresomeone']['year'] = 0; + $_SESSION['assuresomeone']['month'] = 0; + $_SESSION['assuresomeone']['day'] = 0; if($_SESSION['profile']['ttpadmin'] == 1) // $methods = array("Face to Face Meeting", "Trusted 3rd Parties", "TopUP"); |