Fix autoloader for later inclusion
This commit is contained in:
parent
9a34fcffb2
commit
74e8f99fd8
@ -20,9 +20,12 @@ define('BASE_PATH', dirname(__FILE__).'/');
|
||||
define('DRIVER_PATH', BASE_PATH.'drivers/');
|
||||
|
||||
// Bulk loading wrapper workaround for PHP < 5.4
|
||||
function do_include($path)
|
||||
if ( ! function_exists('do_include'))
|
||||
{
|
||||
function do_include($path)
|
||||
{
|
||||
require_once($path);
|
||||
}
|
||||
}
|
||||
|
||||
// Load base classes
|
||||
|
Loading…
Reference in New Issue
Block a user