diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-03 16:43:42 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-03 16:43:42 -0400 |
commit | aacec52a0724afccb962891784123cf2a4bce70a (patch) | |
tree | 71daa6e6669e077f8b2d7e69a205fe7323f9d72f | |
parent | 903213e63fd6c409046f66e73881aba33c3926de (diff) |
show force disabled plugins in advanced mode
-rw-r--r-- | IkiWiki/Plugin/websetup.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/websetup.pm b/IkiWiki/Plugin/websetup.pm index 4670d69c0..ad8270f79 100644 --- a/IkiWiki/Plugin/websetup.pm +++ b/IkiWiki/Plugin/websetup.pm @@ -86,7 +86,7 @@ sub showfields ($$$@) { #{{{ (exists $config{websetup_force_plugins} && grep { $_ eq $plugin } @{$config{websetup_force_plugins}})); if ($plugin_forced && ! $enabled) { # plugin is forced disabled, so skip its configuration - return; + @show=(); } my %shownfields; |