ReAdd possibility to load existing app folders

This commit is contained in:
Brice Maron 2012-06-07 19:15:31 +00:00
parent cf02f3c107
commit 0f7fdd4148
1 changed files with 5 additions and 0 deletions

View File

@ -173,6 +173,11 @@ class OC{
}
OC::$APPSROOTS[] = array('path'=> $path, 'web' => $web_a[$k]);
}
}elseif(file_exists(OC::$SERVERROOT.'/apps')){
OC::$APPSROOTS[] = array('path'=> OC::$SERVERROOT.'/apps', 'web' => OC::$WEBROOT.'/apps/');
}elseif(file_exists(OC::$SERVERROOT.'/../apps')){
OC::$APPSROOTS[] = array('path'=> rtrim(dirname(OC::$SERVERROOT), '/').'/apps', 'web' => rtrim(dirname(OC::$WEBROOT), '/').'/apps/');
OC::$APPSROOT=rtrim(dirname(OC::$SERVERROOT), '/');
}
if(empty(OC::$APPSROOTS)){