mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 09:23:28 +01:00
removed common->phpgw_exit() and fixed all references to it in the core apps and api
This commit is contained in:
parent
d8bf8e6ba6
commit
86032f02dd
@ -180,7 +180,8 @@
|
|||||||
$GLOBALS['phpgw']->common->phpgw_header();
|
$GLOBALS['phpgw']->common->phpgw_header();
|
||||||
echo lang('<b>No conversion type <none> could be located.</b> Please choose a conversion type from the list');
|
echo lang('<b>No conversion type <none> could be located.</b> Please choose a conversion type from the list');
|
||||||
echo ' <a href="'.$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiXport.export') . '">' . lang('OK') . '</a>';
|
echo ' <a href="'.$GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiXport.export') . '">' . lang('OK') . '</a>';
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$buffer = $this->bo->export($conv_type,$cat_id);
|
$buffer = $this->bo->export($conv_type,$cat_id);
|
||||||
|
@ -713,7 +713,8 @@
|
|||||||
|
|
||||||
Header('Location: '
|
Header('Location: '
|
||||||
. $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.view&ab_id=' . $ab_id . '&referer=' . $referer));
|
. $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.view&ab_id=' . $ab_id . '&referer=' . $referer));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->template->set_file(array('add' => 'add.tpl'));
|
$GLOBALS['phpgw']->template->set_file(array('add' => 'add.tpl'));
|
||||||
@ -766,7 +767,8 @@
|
|||||||
. $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.view&ab_id=' . $_fields['ab_id'] . '&referer=' . $referer)
|
. $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.view&ab_id=' . $_fields['ab_id'] . '&referer=' . $referer)
|
||||||
);
|
);
|
||||||
|
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* First, make sure they have permission to this entry */
|
/* First, make sure they have permission to this entry */
|
||||||
@ -776,7 +778,8 @@
|
|||||||
($check[0]['owner'] != $GLOBALS['phpgw_info']['user']['account_id']))
|
($check[0]['owner'] != $GLOBALS['phpgw_info']['user']['account_id']))
|
||||||
{
|
{
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read in user custom fields, if any */
|
/* Read in user custom fields, if any */
|
||||||
@ -836,7 +839,8 @@
|
|||||||
$check[0]['owner'] == $GLOBALS['phpgw_info']['user']['account_id']))
|
$check[0]['owner'] == $GLOBALS['phpgw_info']['user']['account_id']))
|
||||||
{
|
{
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->template->set_file(array('delete' => 'delete.tpl'));
|
$GLOBALS['phpgw']->template->set_file(array('delete' => 'delete.tpl'));
|
||||||
@ -874,13 +878,15 @@
|
|||||||
if((!$perms) && ($check[0]['owner'] != $GLOBALS['phpgw_info']['user']['account_id']))
|
if((!$perms) && ($check[0]['owner'] != $GLOBALS['phpgw_info']['user']['account_id']))
|
||||||
{
|
{
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$ab_id)
|
if(!$ab_id)
|
||||||
{
|
{
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.index'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->template->set_file(array('view_t' => 'view.tpl'));
|
$GLOBALS['phpgw']->template->set_file(array('view_t' => 'view.tpl'));
|
||||||
|
@ -35,7 +35,8 @@
|
|||||||
{
|
{
|
||||||
$GLOBALS['phpgw']->common->phpgw_header();
|
$GLOBALS['phpgw']->common->phpgw_header();
|
||||||
echo lang('access not permitted');
|
echo lang('access not permitted');
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->template->set_file(array(
|
$GLOBALS['phpgw']->template->set_file(array(
|
||||||
@ -118,7 +119,8 @@
|
|||||||
{
|
{
|
||||||
$GLOBALS['phpgw']->common->phpgw_header();
|
$GLOBALS['phpgw']->common->phpgw_header();
|
||||||
echo lang('access not permitted');
|
echo lang('access not permitted');
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$field = $GLOBALS['HTTP_POST_VARS']['field'];
|
$field = $GLOBALS['HTTP_POST_VARS']['field'];
|
||||||
@ -194,7 +196,8 @@
|
|||||||
{
|
{
|
||||||
$GLOBALS['phpgw']->common->phpgw_header();
|
$GLOBALS['phpgw']->common->phpgw_header();
|
||||||
echo lang('access not permitted');
|
echo lang('access not permitted');
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$field = $GLOBALS['HTTP_POST_VARS']['field'] ? $GLOBALS['HTTP_POST_VARS']['field'] : $GLOBALS['HTTP_GET_VARS']['field'];
|
$field = $GLOBALS['HTTP_POST_VARS']['field'] ? $GLOBALS['HTTP_POST_VARS']['field'] : $GLOBALS['HTTP_GET_VARS']['field'];
|
||||||
@ -287,7 +290,8 @@
|
|||||||
{
|
{
|
||||||
$GLOBALS['phpgw']->common->phpgw_header();
|
$GLOBALS['phpgw']->common->phpgw_header();
|
||||||
echo lang('access not permitted');
|
echo lang('access not permitted');
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$field = $GLOBALS['HTTP_POST_VARS']['field'] ? $GLOBALS['HTTP_POST_VARS']['field'] : $GLOBALS['HTTP_GET_VARS']['field'];
|
$field = $GLOBALS['HTTP_POST_VARS']['field'] ? $GLOBALS['HTTP_POST_VARS']['field'] : $GLOBALS['HTTP_GET_VARS']['field'];
|
||||||
|
@ -80,7 +80,8 @@
|
|||||||
if(!$ab_id)
|
if(!$ab_id)
|
||||||
{
|
{
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/addressbook/index.php'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/addressbook/index.php'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
// First, make sure they have permission to this entry
|
// First, make sure they have permission to this entry
|
||||||
@ -95,7 +96,8 @@
|
|||||||
if((!$perms) && ($check[0]['owner'] != $GLOBALS['phpgw_info']['user']['account_id']))
|
if((!$perms) && ($check[0]['owner'] != $GLOBALS['phpgw_info']['user']['account_id']))
|
||||||
{
|
{
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=addressbook.uiaddressbook.get_list'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$extrafields = array('address2' => 'address2');
|
$extrafields = array('address2' => 'address2');
|
||||||
|
@ -15,7 +15,8 @@
|
|||||||
if($d1 == 'htt' || $d1 == 'ftp' )
|
if($d1 == 'htt' || $d1 == 'ftp' )
|
||||||
{
|
{
|
||||||
echo "Failed attempt to break in via an old Security Hole!<br>\n";
|
echo "Failed attempt to break in via an old Security Hole!<br>\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
unset($d1);
|
unset($d1);
|
||||||
|
|
||||||
|
@ -15,7 +15,8 @@
|
|||||||
if($d1 == 'htt' || $d1 == 'ftp' )
|
if($d1 == 'htt' || $d1 == 'ftp' )
|
||||||
{
|
{
|
||||||
echo "Failed attempt to break in via an old Security Hole!<br>\n";
|
echo "Failed attempt to break in via an old Security Hole!<br>\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
unset($d1);
|
unset($d1);
|
||||||
|
|
||||||
|
@ -117,7 +117,8 @@
|
|||||||
$GLOBALS['phpgw']->db->unlock();
|
$GLOBALS['phpgw']->db->unlock();
|
||||||
|
|
||||||
Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
|
Header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
function delete_user()
|
function delete_user()
|
||||||
@ -579,7 +580,8 @@
|
|||||||
if($GLOBALS['phpgw']->acl->check('group_access',16,'admin') || $GLOBALS['HTTP_POST_VARS']['cancel'])
|
if($GLOBALS['phpgw']->acl->check('group_access',16,'admin') || $GLOBALS['HTTP_POST_VARS']['cancel'])
|
||||||
{
|
{
|
||||||
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
|
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
elseif($GLOBALS['HTTP_POST_VARS']['submit'])
|
elseif($GLOBALS['HTTP_POST_VARS']['submit'])
|
||||||
{
|
{
|
||||||
@ -599,7 +601,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
|
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
function validate_group($group_info)
|
function validate_group($group_info)
|
||||||
@ -632,7 +635,8 @@
|
|||||||
{
|
{
|
||||||
$ui = createobject('admin.uiaccounts');
|
$ui = createobject('admin.uiaccounts');
|
||||||
$ui->create_edit_group($group_info,$errors);
|
$ui->create_edit_group($group_info,$errors);
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,6 +90,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
Header('Location: '.$GLOBALS['phpgw']->link('/admin/index.php'));
|
Header('Location: '.$GLOBALS['phpgw']->link('/admin/index.php'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -196,7 +196,8 @@
|
|||||||
));
|
));
|
||||||
|
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -288,7 +289,8 @@
|
|||||||
));
|
));
|
||||||
|
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -342,7 +344,8 @@
|
|||||||
{
|
{
|
||||||
$this->bo->delete($app_name);
|
$this->bo->delete($app_name);
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->common->phpgw_header();
|
$GLOBALS['phpgw']->common->phpgw_header();
|
||||||
|
@ -137,7 +137,8 @@
|
|||||||
{
|
{
|
||||||
$GLOBALS['phpgw']->session->appsession('session_data','admin_config',-1);
|
$GLOBALS['phpgw']->session->appsession('session_data','admin_config',-1);
|
||||||
Header('Location: ' . $_redir);
|
Header('Location: ' . $_redir);
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -566,7 +566,7 @@
|
|||||||
'readsess' => 1
|
'readsess' => 1
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
$overlapping_events = False;
|
$overlapping_events = False;
|
||||||
}
|
}
|
||||||
@ -575,7 +575,8 @@
|
|||||||
if((!$l_cal['id'] && !$this->check_perms(PHPGW_ACL_ADD)) || ($l_cal['id'] && !$this->check_perms(PHPGW_ACL_EDIT,$l_cal['id'])))
|
if((!$l_cal['id'] && !$this->check_perms(PHPGW_ACL_ADD)) || ($l_cal['id'] && !$this->check_perms(PHPGW_ACL_EDIT,$l_cal['id'])))
|
||||||
{
|
{
|
||||||
ExecMethod('calendar.uicalendar.index');
|
ExecMethod('calendar.uicalendar.index');
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
print_debug('prior to fix_update_time()');
|
print_debug('prior to fix_update_time()');
|
||||||
@ -732,7 +733,7 @@
|
|||||||
'readsess' => 1
|
'readsess' => 1
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($event['id'])
|
if($event['id'])
|
||||||
@ -765,7 +766,7 @@
|
|||||||
'this_event' => $event
|
'this_event' => $event
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -795,7 +796,8 @@
|
|||||||
if($send_to_ui)
|
if($send_to_ui)
|
||||||
{
|
{
|
||||||
Execmethod('calendar.uicalendar.index');
|
Execmethod('calendar.uicalendar.index');
|
||||||
// $GLOBALS['phpgw']->common->phpgw_exit();
|
// $GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
// exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2903,7 +2903,8 @@ class boicalendar
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$GLOBALS['phpwg']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
$uploaddir = $GLOBALS['phpgw_info']['server']['temp_dir'] . SEP;
|
$uploaddir = $GLOBALS['phpgw_info']['server']['temp_dir'] . SEP;
|
||||||
|
|
||||||
@ -2940,7 +2941,8 @@ class boicalendar
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$GLOBALS['phpwg']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!is_object($GLOBALS['uicalendar']))
|
if(!is_object($GLOBALS['uicalendar']))
|
||||||
@ -3202,7 +3204,8 @@ class boicalendar
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
function export($l_event_id=0)
|
function export($l_event_id=0)
|
||||||
|
@ -99,7 +99,8 @@
|
|||||||
$GLOBALS['phpgw']->preferences->save_repository(True);
|
$GLOBALS['phpgw']->preferences->save_repository(True);
|
||||||
|
|
||||||
Header('Location: '.$GLOBALS['phpgw']->link('/preferences/index.php'));
|
Header('Location: '.$GLOBALS['phpgw']->link('/preferences/index.php'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -288,7 +288,8 @@
|
|||||||
function index($params='')
|
function index($params='')
|
||||||
{
|
{
|
||||||
Header('Location: '. $this->page('',$params));
|
Header('Location: '. $this->page('',$params));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
function printer_friendly($body)
|
function printer_friendly($body)
|
||||||
@ -642,13 +643,13 @@
|
|||||||
if ($cal_id < 1)
|
if ($cal_id < 1)
|
||||||
{
|
{
|
||||||
echo lang('Invalid entry id.').'</center>'."\n";
|
echo lang('Invalid entry id.').'</center>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$this->bo->check_perms(PHPGW_ACL_READ,$cal_id))
|
if(!$this->bo->check_perms(PHPGW_ACL_READ,$cal_id))
|
||||||
{
|
{
|
||||||
echo lang('You do not have permission to read this record!').'</center>'."\n";
|
echo lang('You do not have permission to read this record!').'</center>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$event = $this->bo->read_entry($cal_id);
|
$event = $this->bo->read_entry($cal_id);
|
||||||
@ -656,7 +657,7 @@
|
|||||||
if(!isset($event['id']))
|
if(!isset($event['id']))
|
||||||
{
|
{
|
||||||
echo lang("Sorry, this event does not exist").'.'.'</center>'."\n";
|
echo lang("Sorry, this event does not exist").'.'.'</center>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->bo->repeating_events = Array();
|
$this->bo->repeating_events = Array();
|
||||||
@ -685,7 +686,7 @@
|
|||||||
if($ret_value == '<center>'.lang('You do not have permission to read this record!').'</center>')
|
if($ret_value == '<center>'.lang('You do not have permission to read this record!').'</center>')
|
||||||
{
|
{
|
||||||
echo '</center>'."\n";
|
echo '</center>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
||||||
@ -846,7 +847,8 @@
|
|||||||
if(!$this->bo->can_user_edit($event))
|
if(!$this->bo->can_user_edit($event))
|
||||||
{
|
{
|
||||||
Header('Location: '.$this->page('view','&cal_id='.$cal_id));
|
Header('Location: '.$this->page('view','&cal_id='.$cal_id));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
if(@isset($GLOBALS['HTTP_POST_VARS']['edit_type']) && $GLOBALS['HTTP_POST_VARS']['edit_type'] == 'single')
|
if(@isset($GLOBALS['HTTP_POST_VARS']['edit_type']) && $GLOBALS['HTTP_POST_VARS']['edit_type'] == 'single')
|
||||||
{
|
{
|
||||||
@ -878,7 +880,8 @@
|
|||||||
if(!isset($GLOBALS['HTTP_POST_VARS']['cal_id']) || !$GLOBALS['HTTP_POST_VARS']['cal_id'])
|
if(!isset($GLOBALS['HTTP_POST_VARS']['cal_id']) || !$GLOBALS['HTTP_POST_VARS']['cal_id'])
|
||||||
{
|
{
|
||||||
Header('Location: '.$this->index());
|
Header('Location: '.$this->index());
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
$GLOBALS['phpgw_info']['flags']['noappheader'] = True;
|
$GLOBALS['phpgw_info']['flags']['noappheader'] = True;
|
||||||
$GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
|
$GLOBALS['phpgw_info']['flags']['noappfooter'] = True;
|
||||||
@ -925,7 +928,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
Header('Location: '.$this->index());
|
Header('Location: '.$this->index());
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -952,13 +956,13 @@
|
|||||||
if ($cal_id < 1)
|
if ($cal_id < 1)
|
||||||
{
|
{
|
||||||
echo lang('Invalid entry id.').'</center>'."\n";
|
echo lang('Invalid entry id.').'</center>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!$this->bo->check_perms(PHPGW_ACL_READ))
|
if(!$this->bo->check_perms(PHPGW_ACL_READ))
|
||||||
{
|
{
|
||||||
echo lang('You do not have permission to read this record!').'</center>'."\n";
|
echo lang('You do not have permission to read this record!').'</center>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$event = $this->bo->read_entry($cal_id);
|
$event = $this->bo->read_entry($cal_id);
|
||||||
@ -966,12 +970,12 @@
|
|||||||
if(!isset($event['id']))
|
if(!isset($event['id']))
|
||||||
{
|
{
|
||||||
echo lang('Sorry, this event does not exist').'.'.'</center>'."\n";
|
echo lang('Sorry, this event does not exist').'.'.'</center>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
elseif(!isset($event['recur_exception']))
|
elseif(!isset($event['recur_exception']))
|
||||||
{
|
{
|
||||||
echo lang('Sorry, this event does not have exceptions defined').'.'.'</center>'."\n";
|
echo lang('Sorry, this event does not have exceptions defined').'.'.'</center>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$ret_value = $this->view_event($event,True);
|
$ret_value = $this->view_event($event,True);
|
||||||
@ -980,7 +984,7 @@
|
|||||||
if($ret_value == '<center>'.lang('You do not have permission to read this record!').'</center>')
|
if($ret_value == '<center>'.lang('You do not have permission to read this record!').'</center>')
|
||||||
{
|
{
|
||||||
echo '</center>'."\n";
|
echo '</center>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
$p = CreateObject('phpgwapi.Template',$this->template_dir);
|
||||||
@ -1046,7 +1050,8 @@
|
|||||||
echo '<!-- Return Value = '.$cd.' -->'."\n";
|
echo '<!-- Return Value = '.$cd.' -->'."\n";
|
||||||
}
|
}
|
||||||
Header('Location: '.$this->page('',($cd?'&cd='.$cd:'')));
|
Header('Location: '.$this->page('',($cd?'&cd='.$cd:'')));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
function add($cd=0,$readsess=0)
|
function add($cd=0,$readsess=0)
|
||||||
@ -1107,7 +1112,8 @@
|
|||||||
if(!$cal_id)
|
if(!$cal_id)
|
||||||
{
|
{
|
||||||
Header('Location: '.$this->page('','&date='.sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day)));
|
Header('Location: '.$this->page('','&date='.sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day)));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$date = sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day);
|
$date = sprintf("%04d%02d%02d",$this->bo->year,$this->bo->month,$this->bo->day);
|
||||||
@ -1139,7 +1145,8 @@
|
|||||||
$cd = '';
|
$cd = '';
|
||||||
}
|
}
|
||||||
Header('Location: '.$this->page('','&date='.$date.($cd?'&cd='.$cd:'')));
|
Header('Location: '.$this->page('','&date='.$date.($cd?'&cd='.$cd:'')));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
function day()
|
function day()
|
||||||
@ -1260,7 +1267,8 @@
|
|||||||
$this->bo->set_status(intval($GLOBALS['HTTP_GET_VARS']['cal_id']),intval($GLOBALS['HTTP_GET_VARS']['action']));
|
$this->bo->set_status(intval($GLOBALS['HTTP_GET_VARS']['cal_id']),intval($GLOBALS['HTTP_GET_VARS']['action']));
|
||||||
|
|
||||||
Header('Location: '.$this->page('',''));
|
Header('Location: '.$this->page('',''));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
function planner()
|
function planner()
|
||||||
@ -2052,7 +2060,8 @@
|
|||||||
// If we reach this, it is because they didn't search for anything,
|
// If we reach this, it is because they didn't search for anything,
|
||||||
// attempt to send them back to where they where.
|
// attempt to send them back to where they where.
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link($from));
|
Header('Location: ' . $GLOBALS['phpgw']->link($from));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
unset($GLOBALS['phpgw_info']['flags']['noheader']);
|
unset($GLOBALS['phpgw_info']['flags']['noheader']);
|
||||||
|
@ -20,7 +20,8 @@
|
|||||||
if($d1 == 'htt' || $d1 == 'ftp')
|
if($d1 == 'htt' || $d1 == 'ftp')
|
||||||
{
|
{
|
||||||
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
||||||
$phpgw->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
unset($d1);
|
unset($d1);
|
||||||
|
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
if($d1 == 'htt' || $d1 == 'ftp' )
|
if($d1 == 'htt' || $d1 == 'ftp' )
|
||||||
{
|
{
|
||||||
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
unset($d1);
|
unset($d1);
|
||||||
|
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
if($d1 == 'htt' || $d1 == 'ftp' )
|
if($d1 == 'htt' || $d1 == 'ftp' )
|
||||||
{
|
{
|
||||||
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
unset($d1);
|
unset($d1);
|
||||||
|
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
if($d1 == 'htt' || $d1 == 'ftp' )
|
if($d1 == 'htt' || $d1 == 'ftp' )
|
||||||
{
|
{
|
||||||
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
unset($d1);
|
unset($d1);
|
||||||
|
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
if($d1 == 'htt' || $d1 == 'ftp' )
|
if($d1 == 'htt' || $d1 == 'ftp' )
|
||||||
{
|
{
|
||||||
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
unset($d1);
|
unset($d1);
|
||||||
|
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
if($d1 == 'htt' || $d1 == 'ftp' )
|
if($d1 == 'htt' || $d1 == 'ftp' )
|
||||||
{
|
{
|
||||||
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
echo 'Failed attempt to break in via an old Security Hole!<br>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
unset($d1);
|
unset($d1);
|
||||||
|
|
||||||
|
@ -37,5 +37,6 @@
|
|||||||
);
|
);
|
||||||
|
|
||||||
Header('Location: '.$GLOBALS['phpgw']->link('/index.php',$parms));
|
Header('Location: '.$GLOBALS['phpgw']->link('/index.php',$parms));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
?>
|
?>
|
||||||
|
@ -88,7 +88,8 @@
|
|||||||
$phpgw->preferences->save_repository(True);
|
$phpgw->preferences->save_repository(True);
|
||||||
|
|
||||||
Header('Location: '.$phpgw->link('/preferences/index.php'));
|
Header('Location: '.$phpgw->link('/preferences/index.php'));
|
||||||
$phpgw->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
function display_item($field,$data)
|
function display_item($field,$data)
|
||||||
|
@ -20,4 +20,5 @@
|
|||||||
include('../header.inc.php');
|
include('../header.inc.php');
|
||||||
|
|
||||||
header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=et_media.et_media.edit'));
|
header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=et_media.et_media.edit'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
|
@ -146,7 +146,8 @@ Create the file <b>/et_media/index.php</b> with the following content:</p>
|
|||||||
include('../header.inc.php');
|
include('../header.inc.php');
|
||||||
|
|
||||||
header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=et_media.et_media.edit'));
|
header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=et_media.et_media.edit'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
</pre>
|
</pre>
|
||||||
|
|
||||||
<h2>7. the code of class.et_media.inc.php</h2>
|
<h2>7. the code of class.et_media.inc.php</h2>
|
||||||
|
@ -171,14 +171,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Called when the window is being destroyed: destroy the session and let phpgw_exit close the db-connection
|
* Called when the window is being destroyed: destroy the session
|
||||||
*/
|
*/
|
||||||
function destroy()
|
function destroy()
|
||||||
{
|
{
|
||||||
Gtk::main_quit();
|
Gtk::main_quit();
|
||||||
$GLOBALS['phpgw']->session->destroy($GLOBALS['phpgw_info']['user']['sessionid'],$GLOBALS['phpgw_info']['user']['kp3']);
|
$GLOBALS['phpgw']->session->destroy($GLOBALS['phpgw_info']['user']['sessionid'],$GLOBALS['phpgw_info']['user']['kp3']);
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
exit();
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
function button_clicked(&$var,$form_name)
|
function button_clicked(&$var,$form_name)
|
||||||
|
@ -20,5 +20,6 @@
|
|||||||
include('../header.inc.php');
|
include('../header.inc.php');
|
||||||
|
|
||||||
header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=etemplate.editor.edit'));
|
header('Location: '.$GLOBALS['phpgw']->link('/index.php','menuaction=etemplate.editor.edit'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
?>
|
?>
|
||||||
|
@ -41,4 +41,5 @@ $GLOBALS['phpgw_info']['flags']['currentapp'] = 'etemplate';
|
|||||||
|
|
||||||
ExecMethod('etemplate.db_tools.edit');
|
ExecMethod('etemplate.db_tools.edit');
|
||||||
|
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
|
@ -481,7 +481,8 @@
|
|||||||
echo('<b>Halted.</b>');
|
echo('<b>Halted.</b>');
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* public, override: haltmsg($msg)
|
/* public, override: haltmsg($msg)
|
||||||
|
@ -169,12 +169,14 @@
|
|||||||
if (!$resp)
|
if (!$resp)
|
||||||
{
|
{
|
||||||
echo '<p>IO error: '.$this->client->errstr.'</p>';
|
echo '<p>IO error: '.$this->client->errstr.'</p>';
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
if ($resp->faultCode())
|
if ($resp->faultCode())
|
||||||
{
|
{
|
||||||
echo '<p>There was an error: '.$resp->faultCode().' '.$resp->faultString().'</p>';
|
echo '<p>There was an error: '.$resp->faultCode().' '.$resp->faultString().'</p>';
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
return xmlrpc_decode($resp->value());
|
return xmlrpc_decode($resp->value());
|
||||||
}
|
}
|
||||||
|
@ -301,28 +301,6 @@
|
|||||||
return $ds;
|
return $ds;
|
||||||
}
|
}
|
||||||
|
|
||||||
// This function is used if the developer wants to stop a running app in the middle of execution
|
|
||||||
// We may need to do some clean up before hand
|
|
||||||
/*!
|
|
||||||
@function phpgw_exit
|
|
||||||
@abstract function to stop running an app
|
|
||||||
@discussion used to stop running an app in the middle of execution <br>
|
|
||||||
There may need to be some cleanup before hand
|
|
||||||
@param $call_footer boolean value to if true then call footer else exit
|
|
||||||
*/
|
|
||||||
function phpgw_exit($call_footer = False)
|
|
||||||
{
|
|
||||||
if ($call_footer)
|
|
||||||
{
|
|
||||||
$this->phpgw_footer();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$GLOBALS['phpgw']->db->disconnect();
|
|
||||||
}
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
@function randomstring
|
@function randomstring
|
||||||
@abstract return a random string of size $size
|
@abstract return a random string of size $size
|
||||||
@ -1518,11 +1496,12 @@ if (!@is_file(PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info'
|
|||||||
{
|
{
|
||||||
$this->phpgw_appfooter();
|
$this->phpgw_appfooter();
|
||||||
}
|
}
|
||||||
$GLOBALS['phpgw']->db->disconnect();
|
|
||||||
$this->phpgw_header();
|
$this->phpgw_header();
|
||||||
$GLOBALS['phpgw']->template->pfp('out','phpgw_main_end');
|
$GLOBALS['phpgw']->template->pfp('out','phpgw_main_end');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$GLOBALS['phpgw']->db->disconnect();
|
||||||
|
|
||||||
/* Clean up mcrypt */
|
/* Clean up mcrypt */
|
||||||
if (@is_object($GLOBALS['phpgw']->crypto))
|
if (@is_object($GLOBALS['phpgw']->crypto))
|
||||||
{
|
{
|
||||||
@ -1536,7 +1515,6 @@ if (!@is_file(PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info'
|
|||||||
echo 'Page loaded in ' . ($GLOBALS['debug_timer_stop'] - $GLOBALS['debug_timer_start']) . ' seconds.';
|
echo 'Page loaded in ' . ($GLOBALS['debug_timer_stop'] - $GLOBALS['debug_timer_start']) . ' seconds.';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// echo 'an app is trying to run the phpgw_footer() more than once<br>';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function hex2bin($data)
|
function hex2bin($data)
|
||||||
|
@ -356,7 +356,7 @@
|
|||||||
if($this->Halt_On_Error != "report")
|
if($this->Halt_On_Error != "report")
|
||||||
{
|
{
|
||||||
echo "<p><b>Session halted.</b>";
|
echo "<p><b>Session halted.</b>";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -561,7 +561,7 @@
|
|||||||
if($this->Halt_On_Error != 'report')
|
if($this->Halt_On_Error != 'report')
|
||||||
{
|
{
|
||||||
echo '<p><b>Session halted.</b>';
|
echo '<p><b>Session halted.</b>';
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -540,7 +540,7 @@
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
echo $s;
|
echo $s;
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -108,7 +108,7 @@
|
|||||||
echo "</center>";
|
echo "</center>";
|
||||||
// Commit stack to log
|
// Commit stack to log
|
||||||
$GLOBALS['phpgw']->log->commit();
|
$GLOBALS['phpgw']->log->commit();
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -380,7 +380,8 @@
|
|||||||
{
|
{
|
||||||
echo 'Error: '.$this->error['code'].' : '.$this->error['msg'].' - '.$this->error['desc']."<br>\r\n";
|
echo 'Error: '.$this->error['code'].' : '.$this->error['msg'].' - '.$this->error['desc']."<br>\r\n";
|
||||||
$this->close();
|
$this->close();
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
// REDUNDANT FUNCTION FROM NON-SOCK CLASS
|
// REDUNDANT FUNCTION FROM NON-SOCK CLASS
|
||||||
@ -1066,7 +1067,8 @@
|
|||||||
{
|
{
|
||||||
if ($i==count($str)-1 && $str[$i] == "`")
|
if ($i==count($str)-1 && $str[$i] == "`")
|
||||||
{
|
{
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
$pos=1;
|
$pos=1;
|
||||||
$d=0;
|
$d=0;
|
||||||
|
@ -381,7 +381,8 @@
|
|||||||
if (!$this->open_port($server,$port,15))
|
if (!$this->open_port($server,$port,15))
|
||||||
{
|
{
|
||||||
echo '<p><center><b>' .lang('There was an error trying to connect to your IMAP server.<br>Please contact your admin to check the servername, username or password.') .'</b></center>';
|
echo '<p><center><b>' .lang('There was an error trying to connect to your IMAP server.<br>Please contact your admin to check the servername, username or password.') .'</b></center>';
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -119,7 +119,8 @@
|
|||||||
if (!$this->open_port($server,$port,15))
|
if (!$this->open_port($server,$port,15))
|
||||||
{
|
{
|
||||||
echo '<p><center><b>' . lang('There was an error trying to connect to your POP3 server.<br>Please contact your admin to check the servername, username or password.').'</b></center>';
|
echo '<p><center><b>' . lang('There was an error trying to connect to your POP3 server.<br>Please contact your admin to check the servername, username or password.').'</b></center>';
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
$this->read_port();
|
$this->read_port();
|
||||||
if(!$this->msg2socket('USER '.$user,"^\+ok",&$response) || !$this->msg2socket('PASS '.$pass,"^\+ok",&$response))
|
if(!$this->msg2socket('USER '.$user,"^\+ok",&$response) || !$this->msg2socket('PASS '.$pass,"^\+ok",&$response))
|
||||||
|
@ -72,7 +72,8 @@
|
|||||||
if ($var=='' || !isset($this->$var))
|
if ($var=='' || !isset($this->$var))
|
||||||
{
|
{
|
||||||
echo 'Programming Error: '.$this->getvar('classname').'->getvar('.$var.')!<br>'."\n";
|
echo 'Programming Error: '.$this->getvar('classname').'->getvar('.$var.')!<br>'."\n";
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
//echo "Var = ".$var."<br>\n";
|
//echo "Var = ".$var."<br>\n";
|
||||||
//echo $var." = ".$this->$var."<br>\n";
|
//echo $var." = ".$this->$var."<br>\n";
|
||||||
|
@ -577,7 +577,7 @@
|
|||||||
$GLOBALS['phpgw_info']['flags']['msgbox_data']['Access not permitted']=False;
|
$GLOBALS['phpgw_info']['flags']['msgbox_data']['Access not permitted']=False;
|
||||||
$continue_app_data = False;
|
$continue_app_data = False;
|
||||||
$GLOBALS['phpgw']->template->set_var('phpgw_body',"user has no rights to this app!!!<br>\n");
|
$GLOBALS['phpgw']->template->set_var('phpgw_body',"user has no rights to this app!!!<br>\n");
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if($continue_app_data)
|
if($continue_app_data)
|
||||||
|
@ -115,7 +115,8 @@
|
|||||||
Header('Content-type: text/xml');
|
Header('Content-type: text/xml');
|
||||||
Header('Content-length: ' . strlen($payload));
|
Header('Content-length: ' . strlen($payload));
|
||||||
print $payload;
|
print $payload;
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(False);
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
// used to store state during parsing
|
// used to store state during parsing
|
||||||
|
@ -26,7 +26,8 @@
|
|||||||
if (! $GLOBALS['phpgw']->acl->check('changepassword', 1))
|
if (! $GLOBALS['phpgw']->acl->check('changepassword', 1))
|
||||||
{
|
{
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/preferences/index.php/'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/preferences/index.php/'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->template->set_file(array(
|
$GLOBALS['phpgw']->template->set_file(array(
|
||||||
|
@ -23,7 +23,8 @@
|
|||||||
if ($GLOBALS['phpgw_info']['user']['permissions']['anonymous'])
|
if ($GLOBALS['phpgw_info']['user']['permissions']['anonymous'])
|
||||||
{
|
{
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($submit)
|
if ($submit)
|
||||||
|
@ -56,7 +56,7 @@
|
|||||||
if ($GLOBALS['phpgw_info']['server']['deny_user_grants_access'])
|
if ($GLOBALS['phpgw_info']['server']['deny_user_grants_access'])
|
||||||
{
|
{
|
||||||
echo '<center><b>' . lang('Access not permitted') . '</b></center>';
|
echo '<center><b>' . lang('Access not permitted') . '</b></center>';
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -275,7 +275,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
Header('Location: ' . $GLOBALS['phpgw']->link('/preferences/index.php'));
|
Header('Location: ' . $GLOBALS['phpgw']->link('/preferences/index.php'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->common->phpgw_header();
|
$GLOBALS['phpgw']->common->phpgw_header();
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
// if(basename($HTTP_REFERER) != 'home.php')
|
// if(basename($HTTP_REFERER) != 'home.php')
|
||||||
// {
|
// {
|
||||||
// Header('Location: '.$GLOBALS['phpgw']->link('/home.php'));
|
// Header('Location: '.$GLOBALS['phpgw']->link('/home.php'));
|
||||||
// $GLOBALS['phpgw']->common->phpgw_exit();
|
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// $GLOBALS['phpgw']->preferences->delete('portal_order');
|
// $GLOBALS['phpgw']->preferences->delete('portal_order');
|
||||||
@ -103,6 +102,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
Header('Location: '.$GLOBALS['phpgw']->link('/home.php'));
|
Header('Location: '.$GLOBALS['phpgw']->link('/home.php'));
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit();
|
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
|
||||||
|
exit;
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
@ -437,7 +437,7 @@
|
|||||||
echo('<b>Halted.</b>');
|
echo('<b>Halted.</b>');
|
||||||
}
|
}
|
||||||
|
|
||||||
$GLOBALS['phpgw']->common->phpgw_exit(True);
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* public, override: haltmsg($msg)
|
/* public, override: haltmsg($msg)
|
||||||
|
Loading…
Reference in New Issue
Block a user