Browse Source

fix loading of plugins

remotes/origin/stable
Robin Appelman 16 years ago
parent
commit
df149217b9
  1. 2
      inc/lib_base.php

2
inc/lib_base.php

@ -128,7 +128,7 @@ if(OC_USER::isLoggedIn()){
// load plugins
$CONFIG_LOADPLUGINS='';
$plugins=explode(' ',$CONFIG_LOADPLUGINS);
if(isset($plugins[0]['url'])) foreach($plugins as $plugin) require_once('plugins/'.$plugin.'/lib_'.$plugin.'.php');
if(isset($plugins[0]['url'])) foreach($plugins as $plugin) oc_require_once('plugins/'.$plugin.'/lib_'.$plugin.'.php');
// check if the server is correctly configured for ownCloud

Loading…
Cancel
Save