[Easymod-cvs] easymod2/mods/easymod/includes admin_easymod.php.txt,1.17,1.18
Status: Beta
Brought to you by:
wgeric
|
From: Eric F. <wg...@us...> - 2005-06-30 21:11:10
|
Update of /cvsroot/easymod/easymod2/mods/easymod/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25597/mods/easymod/includes Modified Files: admin_easymod.php.txt Log Message: bug fixes for 0.2.0b, cant figure out what is going on with the em_functions.php not being found error Index: admin_easymod.php.txt =================================================================== RCS file: /cvsroot/easymod/easymod2/mods/easymod/includes/admin_easymod.php.txt,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** admin_easymod.php.txt 29 Jun 2005 00:03:17 -0000 1.17 --- admin_easymod.php.txt 30 Jun 2005 21:10:59 -0000 1.18 *************** *** 45,49 **** // Let's set the root dir for phpBB // - $script_path = 'admin' ; $phpbb_root_path = './../'; require($phpbb_root_path . 'extension.inc'); --- 45,48 ---- *************** *** 84,88 **** if (!file_exists($phpbb_root_path . 'admin/em_includes/em_functions.' . $phpEx)) { ! die("CRITICAL ERROR: could not find [$phpbb_root_path/admin/em_includes/em_functions.$phpEx]. Aborting.") ; } --- 83,87 ---- if (!file_exists($phpbb_root_path . 'admin/em_includes/em_functions.' . $phpEx)) { ! die('CRITICAL ERROR: could not find [' . $phpbb_root_path . 'admin/em_includes/em_functions.' . $phpEx . ']. Aborting.') ; } |