From 263935464db5d0e3e297d9af39f65b23dad2aeb5 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 7 Oct 2005 07:58:19 +0000 Subject: [PATCH] phpgw --> egw --- index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index ae4473d49d..cfff4012c4 100755 --- a/index.php +++ b/index.php @@ -110,8 +110,8 @@ 'enable_nextmatchs_class' => True, 'currentapp' => 'eGroupWare' ); - $GLOBALS['egw']->common->phpgw_header(); - $GLOBALS['egw']->common->phpgw_footer(); + $GLOBALS['egw']->common->egw_header(); + $GLOBALS['egw']->common->egw_footer(); } else @@ -121,7 +121,7 @@ $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) { execmethod($_GET['menuaction']); @@ -168,7 +168,7 @@ if(!isset($GLOBALS['egw_info']['nofooter'])) { - $GLOBALS['egw']->common->phpgw_footer(); + $GLOBALS['egw']->common->egw_footer(); } } ?>