diff options
Diffstat (limited to 'pages/account')
-rw-r--r-- | pages/account/43.php | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/pages/account/43.php b/pages/account/43.php index 8e6dc13..ca11f03 100644 --- a/pages/account/43.php +++ b/pages/account/43.php @@ -888,17 +888,19 @@ function showassuredby() <br><br> <? } } -switch ($_GET['shownotary']) - { - case 'assuredto': showassuredto(); - break; - case 'assuredby': showassuredby(); - break; - case 'assuredto15': output_received_assurances(intval($_GET['userid']),1); - break; - case 'assuredby15': output_given_assurances(intval($_GET['userid']),1); - break; - } - - -?> +if(isset($_GET['shownotary'])) { + switch($_GET['shownotary']) { + case 'assuredto': + showassuredto(); + break; + case 'assuredby': + showassuredby(); + break; + case 'assuredto15': + output_received_assurances(intval($_GET['userid']),1); + break; + case 'assuredby15': + output_given_assurances(intval($_GET['userid']),1); + break; + } +} |