summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inc/plugincontroller.class.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/plugincontroller.class.php b/inc/plugincontroller.class.php
index aa5d0af57..cdaee2e8f 100644
--- a/inc/plugincontroller.class.php
+++ b/inc/plugincontroller.class.php
@@ -187,7 +187,8 @@ class Doku_Plugin_Controller {
$local_plugins = $this->rebuildLocal();
if($local_plugins != $this->plugin_cascade['local']) {
$file = $this->last_local_config_file;
- $out = "<?php\n/*\n * Local plugin enable/disable settings\n * Auto-generated through plugin/extension manager\n */\n";
+ $out = "<?php\n/*\n * Local plugin enable/disable settings\n * Auto-generated through plugin/extension manager\n".
+ " * NOTE: plugins with a 'disabled' file will not be added to this file unless they are enabled which overrides the 'disabled' file\n */\n";
foreach ($local_plugins as $plugin => $value) {
$out .= "\$plugins['$plugin'] = $value;\n";
}