phpgw --> egw

This commit is contained in:
Ralf Becker 2005-10-07 07:58:19 +00:00
parent edbb4bfa9c
commit 263935464d

View File

@ -110,8 +110,8 @@
'enable_nextmatchs_class' => True, 'enable_nextmatchs_class' => True,
'currentapp' => 'eGroupWare' 'currentapp' => 'eGroupWare'
); );
$GLOBALS['egw']->common->phpgw_header(); $GLOBALS['egw']->common->egw_header();
$GLOBALS['egw']->common->phpgw_footer(); $GLOBALS['egw']->common->egw_footer();
} }
else else
@ -121,7 +121,7 @@
$app = 'phpgwapi'; $app = 'phpgwapi';
} }
$GLOBALS[$class] = CreateObject(sprintf('%s.%s',$app,$class)); $GLOBALS[$class] =& CreateObject($app.'.'.$class);
if((is_array($GLOBALS[$class]->public_functions) && $GLOBALS[$class]->public_functions[$method]) && ! $invalid_data) if((is_array($GLOBALS[$class]->public_functions) && $GLOBALS[$class]->public_functions[$method]) && ! $invalid_data)
{ {
execmethod($_GET['menuaction']); execmethod($_GET['menuaction']);
@ -168,7 +168,7 @@
if(!isset($GLOBALS['egw_info']['nofooter'])) if(!isset($GLOBALS['egw_info']['nofooter']))
{ {
$GLOBALS['egw']->common->phpgw_footer(); $GLOBALS['egw']->common->egw_footer();
} }
} }
?> ?>