From 2b0871b78f0eadbc754da984e4d2258ab99cacf4 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 30 Jul 2019 13:37:28 +0000 Subject: [PATCH] Bug 23396: Add keyboard_shortcuts.sql to C4/Installer.pm To test: 1 - Back up your DB if you want to save it 2 - sudo koha-mysql kohadev DROP database koha_kohadev; CREATE database koha_kohadev; 3 - http://localhost:8081 4 - Go through the web installer 5 - Enable AdvancedCatalogingEditor 6 - Try to load it, fails with JS console error: insert_copyright is not defined 7 - Apply patch 8 - Repeat 9 - This time editor loads Signed-off-by: Katrin Fischer --- C4/Installer.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Installer.pm b/C4/Installer.pm index b62f8431af..9b24ff3d2d 100644 --- a/C4/Installer.pm +++ b/C4/Installer.pm @@ -325,6 +325,7 @@ sub load_sql_in_order { "$global_mandatory_dir/message_transport_types.sql", "$global_mandatory_dir/sample_notices_message_attributes.sql", "$global_mandatory_dir/sample_notices_message_transports.sql", + "$global_mandatory_dir/keyboard_shortcuts.sql", ); push @fnames, C4::Context->config('intranetdir') . "/installer/data/mysql/userflags.sql"; -- 2.11.0