fixing syntax error

This commit is contained in:
Thomas Müller 2012-09-04 15:54:38 +03:00
parent aff08925c1
commit 7901fc33a8
1 changed files with 1 additions and 1 deletions

View 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');