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