@@ -, +, @@ - Edit koha-conf.xml and add a second entry for , so there are two entries. The second one could just be a copy of the original. - Run "perl misc/devel/install_plugins.pl" - Note the output looks something like this: - Apply the patch and run the script again. Output should be: - Sign off --- misc/devel/install_plugins.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/misc/devel/install_plugins.pl +++ a/misc/devel/install_plugins.pl @@ -51,7 +51,7 @@ unless (@installed_plugins) { my $plugins_dir = C4::Context->config("pluginsdir"); if ( ref($plugins_dir) eq 'ARRAY' ) { print "No plugins found\n"; - print "pluginsdir contains: \n" . join( '\n', @{$plugins_dir} ); + print "pluginsdir contains: \n" . join( "\n", @{$plugins_dir} ) . "\n"; } else { print "No plugins found at $plugins_dir\n"; --