diff options
author | INOPIAE <inopiae@cacert.org> | 2014-01-08 01:00:27 +0100 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2014-01-08 01:00:27 +0100 |
commit | 3a661bf6297eca0f571ab807751311a755739d74 (patch) | |
tree | 7d13060d3c50be932a06c4111571cdeae17e4ecc /includes/account.php | |
parent | 3855113d680a590549c18a16b55d5ce8bc46d4d0 (diff) | |
download | cacert-devel-3a661bf6297eca0f571ab807751311a755739d74.tar.gz cacert-devel-3a661bf6297eca0f571ab807751311a755739d74.tar.xz cacert-devel-3a661bf6297eca0f571ab807751311a755739d74.zip |
bug 1236: Corrected showdetail handling
Diffstat (limited to 'includes/account.php')
-rw-r--r-- | includes/account.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/account.php b/includes/account.php index 5f5e680..36793f0 100644 --- a/includes/account.php +++ b/includes/account.php @@ -26,7 +26,7 @@ $oldid = array_key_exists("oldid",$_REQUEST) ? intval($_REQUEST['oldid']) : 0; $process = array_key_exists("process",$_REQUEST) ? $_REQUEST['process'] : ""; // $showdetalis refers to Secret Question and Answers from account/13.php - $showdetails = array_key_exists("showdetails",$_REQUEST) ? $_REQUEST['showdetails'] : ""; + $showdetails = array_key_exists("showdetails",$_REQUEST) ? intval($_REQUEST['showdetails']) : 0; $cert = array_key_exists('cert',$_REQUEST) ? intval($_REQUEST['cert']) : 0; $orgid = array_key_exists('orgid',$_REQUEST) ? intval($_REQUEST['orgid']) : 0; |