]> source.dussan.org Git - nextcloud-server.git/commitdiff
fixing syntax error
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 12:54:38 +0000 (15:54 +0300)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 12:54:38 +0000 (15:54 +0300)
lib/base.php

index 9b728de25aa7951fdb024d0c558e6b70a9f617f5..61dea18689b745d54846f4096be2cce36b13a5f7 100644 (file)
@@ -81,7 +81,7 @@ class OC{
                        $path = strtolower(str_replace('_', '/', substr($className, 3)) . '.php');
                }
                elseif(strpos($className, 'OCP\\')===0) {
-                       $path = 'public/'.strtolower(str_replace('\\',/', substr($className, 3)) . '.php');
+                       $path = 'public/'.strtolower(str_replace('\\', '/', substr($className, 3)) . '.php');
                }
                elseif(strpos($className, 'OCA\\')===0) {
                        $path = 'apps/'.strtolower(str_replace('\\', '/', substr($className, 3)) . '.php');