removed references to 'disabled' file in plugins.local.php

This commit is contained in:
Anika Henke 2016-04-20 12:58:32 +01:00
parent d9808f16cf
commit f449b8c976
2 changed files with 2 additions and 2 deletions

View File

@ -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.
*/

View File

@ -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";
}