diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-04 15:54:38 +0300 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-04 15:54:38 +0300 |
commit | 7901fc33a867d5bdb121ce29d1d09d549d84b173 (patch) | |
tree | 580e55ad2c5acb40a684b20814351a2f166e4967 /lib/base.php | |
parent | aff08925c1a831ca494bdabcd96ed97f15d0f08b (diff) | |
download | nextcloud-server-7901fc33a867d5bdb121ce29d1d09d549d84b173.tar.gz nextcloud-server-7901fc33a867d5bdb121ce29d1d09d549d84b173.zip |
fixing syntax error
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index 9b728de25aa..61dea18689b 100644 --- a/lib/base.php +++ b/lib/base.php @@ -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'); |