summaryrefslogtreecommitdiff
path: root/include/autoload.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/autoload.php')
-rw-r--r--include/autoload.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/autoload.php b/include/autoload.php
index 2e73a9722..1f1dbe5e9 100644
--- a/include/autoload.php
+++ b/include/autoload.php
@@ -2,7 +2,11 @@
require_once "functions.php";
spl_autoload_register(function($class) {
- list ($namespace, $class_name) = explode('\\', $class, 2);
+ $namespace = '';
+ $class_name = $class;
+
+ if (strpos($class, '\\') !== FALSE)
+ list ($namespace, $class_name) = explode('\\', $class, 2);
$root_dir = dirname(__DIR__); // we're in tt-rss/include