diff options
author | Benny Baumann <BenBE@geshi.org> | 2014-04-29 22:55:02 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2014-04-30 20:18:56 +0200 |
commit | d872c0cea992315cd223fdea621e0663753c3751 (patch) | |
tree | 30926e6e33d1e2e3d0b400a5662b3e3ca26c5b7e | |
parent | 346899e832bd91f16733e197f592e7dae0173f70 (diff) | |
download | cacert-devel-d872c0cea992315cd223fdea621e0663753c3751.tar.gz cacert-devel-d872c0cea992315cd223fdea621e0663753c3751.tar.xz cacert-devel-d872c0cea992315cd223fdea621e0663753c3751.zip |
bug 1138: Reorder fields to better show which variables belong together
-rw-r--r-- | includes/account.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/account.php b/includes/account.php index 0cbaea0..a9965d6 100644 --- a/includes/account.php +++ b/includes/account.php @@ -83,9 +83,11 @@ function buildSubjectFromSession() { $orgid = array_key_exists('orgid',$_REQUEST) ? intval($_REQUEST['orgid']) : 0; $memid = array_key_exists('memid',$_REQUEST) ? intval($_REQUEST['memid']) : 0; $domid = array_key_exists('domid',$_REQUEST) ? intval($_REQUEST['domid']) : 0; + + $actionrequest = array_key_exists('action',$_REQUEST) ? $_REQUEST['action'] : ""; + $ticketno = array_key_exists('ticketno',$_REQUEST) ? $_REQUEST['ticketno'] : ""; $ticketvalidation = FALSE; - $actionrequest = array_key_exists('action',$_REQUEST) ? $_REQUEST['action'] : ""; if(!$_SESSION['mconn']) |