aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2016-04-20 12:58:32 +0100
committerAnika Henke <anika@selfthinker.org>2016-04-20 12:58:32 +0100
commitf449b8c9764a91a15cbda1130ef0cd053c48f8e8 (patch)
tree9677457e41b5fbbfae3d9dc596f6a1e7516d019b
parentd9808f16cf84335a41f42dd0c0daa5440cf38d67 (diff)
downloaddokuwiki-f449b8c9764a91a15cbda1130ef0cd053c48f8e8.tar.gz
dokuwiki-f449b8c9764a91a15cbda1130ef0cd053c48f8e8.zip
removed references to 'disabled' file in plugins.local.php
-rw-r--r--_test/conf/plugins.local.php2
-rw-r--r--inc/plugincontroller.class.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/_test/conf/plugins.local.php b/_test/conf/plugins.local.php
index 00e8c10be..4f256a943 100644
--- a/_test/conf/plugins.local.php
+++ b/_test/conf/plugins.local.php
@@ -4,5 +4,5 @@
* Auto-generated through plugin/extension manager
*
* NOTE: Plugins will not be added to this file unless there is a need to override a default setting. Plugins are
- * enabled by default, unless having a 'disabled' file in their plugin folder.
+ * enabled by default.
*/
diff --git a/inc/plugincontroller.class.php b/inc/plugincontroller.class.php
index 61c8811ce..5bb07531e 100644
--- a/inc/plugincontroller.class.php
+++ b/inc/plugincontroller.class.php
@@ -224,7 +224,7 @@ class Doku_Plugin_Controller {
$file = $this->last_local_config_file;
$out = "<?php\n/*\n * Local plugin enable/disable settings\n * Auto-generated through plugin/extension manager\n *\n".
" * NOTE: Plugins will not be added to this file unless there is a need to override a default setting. Plugins are\n".
- " * enabled by default, unless having a 'disabled' file in their plugin folder.\n */\n";
+ " * enabled by default.\n */\n";
foreach ($local_plugins as $plugin => $value) {
$out .= "\$plugins['$plugin'] = $value;\n";
}