|
From: Jon O. <jon...@us...> - 2008-07-13 21:29:16
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb2 In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv32198 Modified Files: core.php Log Message: load_file update, to ensure we are using shared files. Index: core.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb2/core.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** core.php 13 Jul 2008 20:24:50 -0000 1.9 --- core.php 13 Jul 2008 21:29:12 -0000 1.10 *************** *** 375,380 **** if ($force_shared) { ! $backend = in_array($force_shared, array('internal', 'phpbb2', 'phpbb3')) ? $force_shared : PORTAL_BACKEND; ! switch ($backend) { case 'internal': --- 375,381 ---- if ($force_shared) { ! $shared = in_array($force_shared, array('internal', 'phpbb2', 'phpbb3')) ? $force_shared : PORTAL_BACKEND; ! ! switch ($shared) { case 'internal': *************** *** 391,394 **** --- 392,396 ---- $path = $phpbb_root_path . 'includes/'; } + return $path; } |