diff options
-rw-r--r-- | includes/account.php | 2 | ||||
-rw-r--r-- | pages/account/44.php | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/includes/account.php b/includes/account.php index 6020904..a7a69c2 100644 --- a/includes/account.php +++ b/includes/account.php @@ -2701,7 +2701,7 @@ } //check if ticket number was entered - if ( $id== 43 or $oldid==43) { + if ( $id == 43 or $oldid == 43 or $id == 44 or $oldid == 44) { $ticketvalidation = FALSE; if ($ticketno != "" ) { $ticketno = mysql_real_escape_string(trim($_REQUEST['ticketno'])); 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> |