summaryrefslogtreecommitdiff
path: root/ng_selfservice/tickets_resolved.php
blob: ac2a80ca1c7e44d16f1f642a36678e0d2b494186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<? $title ='Resolved Tickets'; include('elements/header.php'); ?>
<? $current_menu = 'tickets_resolved.php'; include('elements/menu.php'); ?>
<?

$customer_info = $freeside->list_tickets( array(
  'session_id' => $_COOKIE['session_id'],
  'status'     => 'resolved',
) );

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'); ?>