define('SERVER_URL', "http://www.mxchange.org");
// This current patch level
-define('CURR_SVN_REVISION', "558");
+define('CURR_SVN_REVISION', "559");
// Take a prime number which is long (if you know a longer one please try it out!)
define('_PRIME', 591623);
// Checks if a given apache module is loaded
function IF_APACHE_MODULE_LOADED ($apacheModule) {
// Check it and return result
- return (in_array($apacheModule, apache_get_modules()));
+ return (((function_exists('apache_get_modules')) && (in_array($apacheModule, apache_get_modules()))) || (!function_exists('apache_get_modules')));
}
//////////////////////////////////////////////////