@@ -, +, @@ 1 - In Admin->Marc bibliographic framework got to Marc Structure for default framework 2 - Search for 856$u 3 - Set Plugin to upload.pl 4 - Edit a record in the default framework 5 - Under 856u, click 'Upload' 6 - Uplaod a file and then click 'Choose' 7 - nothing happens 8 - View consiole (f12) and see error 9 - Apply patch --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt | 4 ++++ 1 file changed, 4 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt @@ -460,6 +460,10 @@ window.close(); } var columns_settings = [% TablesSettings.GetColumns( 'tools', 'upload', 'uploadresults', 'json' ) | $raw %]; + [% IF plugin %] + delete columns_settings[6]; + delete columns_settings[5]; + [% END %] $(document).ready(function() { KohaTable("uploadresults",{ }, columns_settings); --