fixing a possible problem in the fix. accidently commented out the line that stops including files after framework inclusion. It does cause

problems!
This commit is contained in:
Klaus Leithoff 2008-01-28 13:18:35 +00:00
parent 3f3954440d
commit 10f3a93947

View File

@ -83,7 +83,7 @@ if ($GLOBALS['egw_info']['server']['sessions_type'] == 'php4-restore' && $_REQUE
if (basename($file) == 'class.config.inc.php') continue;
//echo "<p>about to include $file</p>\n";
include_once($file);
//if (basename($file) == 'class.egw_framework.inc.php') break; // the rest is not needed and makes only problems
if (basename($file) == 'class.egw_framework.inc.php') break; // the rest is not needed and makes only problems
}
$GLOBALS['egw'] = unserialize($_SESSION['egw_object_cache']);
include_once(EGW_API_INC.'/class.config.inc.php');