Skip to content
Snippets Groups Projects
Commit b8eba07c authored by Gerrit Uitslag's avatar Gerrit Uitslag
Browse files

Remove conf setting 'pluginmanager', since old plugin manager is not default anymore.

This `$conf['pluginmanager']` setting was especially for disabling of
pluginmanager in farms. (see also commit c45608df )
parent 1e1b23a0
No related branches found
No related tags found
No related merge requests found
......@@ -172,8 +172,7 @@ class Doku_Plugin_Controller {
if ($plugin[0] == '.') continue; // skip hidden entries
if (is_file(DOKU_PLUGIN.$plugin)) continue; // skip files, we're only interested in directories
if ((array_key_exists($plugin,$this->tmp_plugins) && $this->tmp_plugins[$plugin] == 0) ||
($plugin === 'plugin' && isset($conf['pluginmanager']) && !$conf['pluginmanager'])){
if (array_key_exists($plugin,$this->tmp_plugins) && $this->tmp_plugins[$plugin] == 0){
$all_plugins[$plugin] = 0;
} elseif ((array_key_exists($plugin,$this->tmp_plugins) && $this->tmp_plugins[$plugin] == 1)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment