summaryrefslogtreecommitdiffstats
path: root/lib/autoloader.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/autoloader.php')
-rw-r--r--lib/autoloader.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php
index 9615838a9a2..21170639092 100644
--- a/lib/autoloader.php
+++ b/lib/autoloader.php
@@ -96,8 +96,8 @@ class Autoloader {
} else {
foreach ($this->prefixPaths as $prefix => $dir) {
if (0 === strpos($class, $prefix)) {
- $path = str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php';
- $path = str_replace('_', DIRECTORY_SEPARATOR, $path);
+ $path = str_replace('\\', '/', $class) . '.php';
+ $path = str_replace('_', '/', $path);
$paths[] = $dir . '/' . $path;
}
}