diff options
author | Benny Baumann <BenBE@geshi.org> | 2013-09-09 02:24:29 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2013-09-09 02:24:29 +0200 |
commit | 874e9f915f55d296981d6d972c2d05d2fc8758d9 (patch) | |
tree | 120ff98d5c7ca2e38b851db5ec8358ca3b2f12b9 /pages/wot/6.php | |
parent | 7ecf07fbecc37be7fe4e58a6532b096accc624d9 (diff) | |
download | cacert-devel-874e9f915f55d296981d6d972c2d05d2fc8758d9.tar.gz cacert-devel-874e9f915f55d296981d6d972c2d05d2fc8758d9.tar.xz cacert-devel-874e9f915f55d296981d6d972c2d05d2fc8758d9.zip |
bug 1208: Better show where $name is used
Diffstat (limited to 'pages/wot/6.php')
-rw-r--r-- | pages/wot/6.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pages/wot/6.php b/pages/wot/6.php index 52bc7e7..bd26557 100644 --- a/pages/wot/6.php +++ b/pages/wot/6.php @@ -52,7 +52,6 @@ $lname = $row['lname']; $suffix = $row['suffix']; $dob = $row['dob']; - $name = $fname." ".$mname." ".$lname." ".$suffix; //needed? $dob_date = explode( '-', $dob); $dob_print = sprintf( @@ -60,6 +59,8 @@ $dob_date[0], $dob_date[1], $dob_date[2], intval($dob_date[2], 10), $mnames[$dob_date[1]], intval($dob_date[0], 10) ); + + $name = $fname." ".$mname." ".$lname." ".$suffix; $_SESSION['_config']['wothash'] = md5($name."-".$dob); require_once($_SESSION['_config']['filepath']."/includes/notary.inc.php"); |