blob: 205d985aac1d4973a2ab5d689f14299e6236d28e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<? $title ='Open Tickets'; include('elements/header.php'); ?>
<? $current_menu = 'tickets.php'; include('elements/menu.php'); ?>
<?
$customer_info = $freeside->customer_info( array(
'session_id' => $_COOKIE['session_id'],
) );
if ( isset($customer_info['error']) && $customer_info['error'] ) {
$error = $customer_info['error'];
header('Location:index.php?error='. urlencode($error));
die();
}
extract($customer_info);
?>
<? include('elements/ticketlist.php'); ?>
<? include('elements/menu_footer.php'); ?>
<? include('elements/footer.php'); ?>
|