Index: trunk/globals.php =================================================================== diff -u -r1566 -r1635 --- trunk/globals.php (.../globals.php) (revision 1566) +++ trunk/globals.php (.../globals.php) (revision 1635) @@ -2,7 +2,10 @@ if (!function_exists('parse_portal_ini')) { function parse_portal_ini($file, $parse_section = false) { - if(!file_exists($file) && !is_readable($file)) + + if (!file_exists($file)) return; + + if(file_exists($file) && !is_readable($file)) die('Could Not Open Ini File'); $contents = file($file);