remove api-specific _autoload

This commit is contained in:
Andrew Dolgov 2012-08-16 18:33:08 +04:00
parent dc0374df2b
commit f1d65e5089
1 changed files with 1 additions and 8 deletions

View File

@ -8,19 +8,12 @@
dirname(dirname(__FILE__)) . PATH_SEPARATOR .
dirname(dirname(__FILE__)) . "/include" );
function __autoload($class) {
$file = "classes/".strtolower(basename($class)).".php";
if (file_exists($file)) {
require $file;
}
}
chdir("..");
require_once "db.php";
require_once "db-prefs.php";
require_once "functions.php";
chdir("..");
if (defined('ENABLE_GZIP_OUTPUT') && ENABLE_GZIP_OUTPUT &&
function_exists("ob_gzhandler")) {