diff options
author | INOPIAE <inopiae@cacert.org> | 2014-03-11 22:45:34 +0100 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2014-03-11 22:45:34 +0100 |
commit | b97cf0e899dcdf027b04092e14130ac0e49ea348 (patch) | |
tree | 54cd1d606cc8a8f9528eee861c69b273f0846d85 /pages | |
parent | 67637d2f29aed7a01a221b4f536f1d3a67f91fa1 (diff) | |
download | cacert-devel-b97cf0e899dcdf027b04092e14130ac0e49ea348.tar.gz cacert-devel-b97cf0e899dcdf027b04092e14130ac0e49ea348.tar.xz cacert-devel-b97cf0e899dcdf027b04092e14130ac0e49ea348.zip |
bug 1138: added $ticketno to function call
Diffstat (limited to 'pages')
-rw-r--r-- | pages/account/43.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/account/43.php b/pages/account/43.php index 73fb071..c0ca26e 100644 --- a/pages/account/43.php +++ b/pages/account/43.php @@ -954,7 +954,7 @@ if(intval($_REQUEST['userid']) > 0) { <? // if(array_key_exists('assuredto',$_GET) && $_GET['assuredto'] == "yes") { - function showassuredto() + function showassuredto($ticketno) { ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> @@ -1001,7 +1001,7 @@ if(intval($_REQUEST['userid']) > 0) { <? } - function showassuredby() + function showassuredby($ticketno) { ?> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> @@ -1053,10 +1053,10 @@ if(intval($_REQUEST['userid']) > 0) { if(isset($_GET['shownotary'])) { switch($_GET['shownotary']) { case 'assuredto': - showassuredto(); + showassuredto($ticketno); break; case 'assuredby': - showassuredby(); + showassuredby($ticketno); break; case 'assuredto15': output_received_assurances(intval($_GET['userid']),1,$ticketno); |