diff options
Diffstat (limited to 'pages')
-rw-r--r-- | pages/account/44.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/pages/account/44.php b/pages/account/44.php index fd34612..9e4e194 100644 --- a/pages/account/44.php +++ b/pages/account/44.php @@ -15,7 +15,12 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ ?> -<? if(array_key_exists('error',$_SESSION['_config']) && $_SESSION['_config']['error'] != "") { ?><div color="orange">ERROR: <?=$_SESSION['_config']['error']?></div><? unset($_SESSION['_config']['error']); } ?> +<? if(array_key_exists('error',$_SESSION['_config']) && $_SESSION['_config']['error'] != "") { ?><div color="orange">ERROR: <?=$_SESSION['_config']['error']?></div><? unset($_SESSION['_config']['error']); } + +$ticketno = ""; if(array_key_exists('ticketno', $_SESSION)) $ticketno = $_SESSION['ticketno']; + +?> + <form method="post" action="account.php"> <table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper"> <tr> @@ -35,4 +40,5 @@ </table> <input type="hidden" name="userid" value="<?=intval($_REQUEST['userid'])?>"> <input type="hidden" name="oldid" value="<?=$id?>"> +<input type="hidden" name="ticketno" value="<?=$ticketno?>"/> </form> |