[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] CVS: admin/inc class.boaccounts.inc.php,1.27,1.28 cla
From: |
Dan Kuykendall <address@hidden> |
Subject: |
[Phpgroupware-cvs] CVS: admin/inc class.boaccounts.inc.php,1.27,1.28 class.boapplications.inc.php,1.6,1.7 class.uiapplications.inc.php,1.4,1.5 class.uiconfig.inc.php,1.11,1.12 |
Date: |
Sat, 28 Sep 2002 16:01:45 -0400 |
Update of /cvsroot/phpgroupware/admin/inc
In directory subversions:/tmp/cvs-serv27342/admin/inc
Modified Files:
class.boaccounts.inc.php class.boapplications.inc.php
class.uiapplications.inc.php class.uiconfig.inc.php
Log Message:
removed common->phpgw_exit() and fixed all references to it in the core apps
and api
Index: class.boaccounts.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/admin/inc/class.boaccounts.inc.php,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -r1.27 -r1.28
*** class.boaccounts.inc.php 26 May 2002 08:50:40 -0000 1.27
--- class.boaccounts.inc.php 28 Sep 2002 20:01:43 -0000 1.28
***************
*** 118,122 ****
Header('Location:
'.$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
! $GLOBALS['phpgw']->common->phpgw_exit();
}
--- 118,123 ----
Header('Location:
'.$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
! $GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
! exit;
}
***************
*** 580,584 ****
{
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
! $GLOBALS['phpgw']->common->phpgw_exit();
}
elseif($GLOBALS['HTTP_POST_VARS']['submit'])
--- 581,586 ----
{
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
! $GLOBALS['phpgw_info']['flags']['nodisplay'] =
True;
! exit;
}
elseif($GLOBALS['HTTP_POST_VARS']['submit'])
***************
*** 600,604 ****
}
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
! $GLOBALS['phpgw']->common->phpgw_exit();
}
--- 602,607 ----
}
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiaccounts.list_groups'));
! $GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
! exit;
}
***************
*** 633,637 ****
$ui = createobject('admin.uiaccounts');
$ui->create_edit_group($group_info,$errors);
! $GLOBALS['phpgw']->common->phpgw_exit();
}
}
--- 636,641 ----
$ui = createobject('admin.uiaccounts');
$ui->create_edit_group($group_info,$errors);
! $GLOBALS['phpgw_info']['flags']['nodisplay'] =
True;
! exit;
}
}
Index: class.boapplications.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/admin/inc/class.boapplications.inc.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** class.boapplications.inc.php 18 Feb 2002 13:41:40 -0000 1.6
--- class.boapplications.inc.php 28 Sep 2002 20:01:43 -0000 1.7
***************
*** 91,95 ****
}
Header('Location:
'.$GLOBALS['phpgw']->link('/admin/index.php'));
! $GLOBALS['phpgw']->common->phpgw_exit();
}
}
--- 91,96 ----
}
Header('Location:
'.$GLOBALS['phpgw']->link('/admin/index.php'));
! $GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
! exit;
}
}
Index: class.uiapplications.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/admin/inc/class.uiapplications.inc.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** class.uiapplications.inc.php 24 May 2002 10:38:02 -0000 1.4
--- class.uiapplications.inc.php 28 Sep 2002 20:01:43 -0000 1.5
***************
*** 197,201 ****
Header('Location: ' .
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
! $GLOBALS['phpgw']->common->phpgw_exit();
}
else
--- 197,202 ----
Header('Location: ' .
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
!
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
! exit;
}
else
***************
*** 289,293 ****
Header('Location: ' .
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
! $GLOBALS['phpgw']->common->phpgw_exit();
}
}
--- 290,295 ----
Header('Location: ' .
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
!
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
! exit;
}
}
***************
*** 343,347 ****
$this->bo->delete($app_name);
Header('Location: ' .
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
! $GLOBALS['phpgw']->common->phpgw_exit();
}
--- 345,350 ----
$this->bo->delete($app_name);
Header('Location: ' .
$GLOBALS['phpgw']->link('/index.php','menuaction=admin.uiapplications.get_list'));
! $GLOBALS['phpgw_info']['flags']['nodisplay'] =
True;
! exit;
}
Index: class.uiconfig.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/admin/inc/class.uiconfig.inc.php,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** class.uiconfig.inc.php 24 May 2002 10:38:02 -0000 1.11
--- class.uiconfig.inc.php 28 Sep 2002 20:01:43 -0000 1.12
***************
*** 138,142 ****
$GLOBALS['phpgw']->session->appsession('session_data','admin_config',-1);
Header('Location: ' . $_redir);
! $GLOBALS['phpgw']->common->phpgw_exit();
}
}
--- 138,143 ----
$GLOBALS['phpgw']->session->appsession('session_data','admin_config',-1);
Header('Location: ' . $_redir);
!
$GLOBALS['phpgw_info']['flags']['nodisplay'] = True;
! exit;
}
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Phpgroupware-cvs] CVS: admin/inc class.boaccounts.inc.php,1.27,1.28 class.boapplications.inc.php,1.6,1.7 class.uiapplications.inc.php,1.4,1.5 class.uiconfig.inc.php,1.11,1.12,
Dan Kuykendall <address@hidden> <=