29 Oct
2014
29 Oct
'14
11:11 a.m.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11401 --- Comment #22 from Magnus Enger <magnus@enger.priv.no> --- Created attachment 32889 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=32889&action=edit Bug 11401 - QA followup 1) Be more careful when checking the NorwegianPatronDBEnable syspref. Before: if ( C4::Context->preference('NorwegianPatronDBEnable') == 1 ) { After: if ( C4::Context->preference('NorwegianPatronDBEnable') && C4::Context->preference('NorwegianPatronDBEnable') == 1 ) { This should avoid complaints if the syspref is not initialized. 2) Fix some empty =head2 POD sections -- You are receiving this mail because: You are watching all bug changes.