fixing syntax error

remotes/origin/stable45
Thomas Müller 12 years ago
parent aff08925c1
commit 7901fc33a8
  1. 2
      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');

Loading…
Cancel
Save