Browse Source

add additional type check

remotes/origin/ldap_group_count
Georg Ehrke 12 years ago
parent
commit
498aa66648
  1. 2
      lib/autoloader.php

2
lib/autoloader.php

@ -90,7 +90,7 @@ class Autoloader {
list(, $app, $rest) = explode('\\', $class, 3);
$app = strtolower($app);
$appPath = \OC_App::getAppPath($app);
if (stream_resolve_include_path($appPath)) {
if ($appPath && stream_resolve_include_path($appPath)) {
$paths[] = $appPath . '/' . strtolower(str_replace('\\', '/', $rest) . '.php');
// If not found in the root of the app directory, insert '/lib' after app id and try again.
$paths[] = $appPath . '/lib/' . strtolower(str_replace('\\', '/', $rest) . '.php');

Loading…
Cancel
Save