From 08425abb83c23586fe8fdcf94fd0f1f4565e95ea Mon Sep 17 00:00:00 2001 From: following Date: Sun, 21 Jul 2013 15:05:51 +0200 Subject: [PATCH] fixed lib1->libse autoload --- htdocs/lib/common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/lib/common.inc.php b/htdocs/lib/common.inc.php index f569786a..3b5ab9f4 100644 --- a/htdocs/lib/common.inc.php +++ b/htdocs/lib/common.inc.php @@ -28,7 +28,7 @@ function __autoload($class_name) $class_name = str_replace('_', '/', $class_name); - $file = $opt['rootpath'] . 'libse/classes/' . $class_name . '.php'; + $file = $opt['rootpath'] . 'libse/' . $class_name . '.php'; if (file_exists($file)) require_once($file); }