http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13291
M. Tompsett <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #40948|0 |1 is obsolete| | --- Comment #8 from M. Tompsett <[email protected]> --- Created attachment 40949 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=40949&action=edit Bug 13291 - remove prog as fallback theme The 'prog' theme for OPAC was removed from Koha. The OPACFallback syspref was added in 3.18.0 with prog|bootstrap options. This patch proposes to remove the prog option, but still maintain the syspref for reasons outlined in Bug 13291 comment #1. TEST PLAN --------- 1) back up DB 2) in sql client: > select * from systempreferences where variable like '%OPACFallback%'; -- 1 record, should have bootstrap and prog choices, and likely prog fallback. 3) at command line: ./installer/data/mysql/updatedatabase.pl 4) in sql client: > select * from systempreferences where variable like '%OPACFallback%'; -- 1 record, should have bootstrap and bootstrap values now. 5) in sql client: > delete from systempreferences where variable like '%OPACFallback%'; -- now there should be no OPACFallback system preference. 6) at command line: ./installer/data/mysql/updatedatabase.pl 7) in sql client: > select * from systempreferences where variable like '%OPACFallback%'; -- 1 record, should have bootstrap and bootstrap values now. 8) in sql client (substitute your koha database name!): > drop database koha_library; > create database koha_library; > use koha_library; 9) Run web installer 10) in sql client: > select * from systempreferences where variable like '%OPACFallback%'; -- 1 record, should have bootstrap and bootstrap values now. 11) run koha qa test tools Signed-off-by: Mark Tompsett <[email protected]> -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
