From 729b34782e6497ffc50d3ca3dd6221faf2b892d4 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 25 Mar 2005 09:21:23 +0000 Subject: [PATCH] fix of last commit, was setting up a reference to itself and not to the old phpgw_info --- setup/inc/functions.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/inc/functions.inc.php b/setup/inc/functions.inc.php index a17aa8ea8d..263404c537 100644 --- a/setup/inc/functions.inc.php +++ b/setup/inc/functions.inc.php @@ -19,8 +19,8 @@ error_reporting(error_reporting() & ~E_NOTICE); // for an old header, we need to setup the reference before including it - if (!is_array($GLOBALS['egw_info'])) $GLOBALS['egw_info'] =& $GLOBALS['egw_info']; - + $GLOBALS['phpgw_info'] =& $GLOBALS['egw_info']; + if(file_exists('../header.inc.php')) { include('../header.inc.php');