[Koha-bugs] [Bug 11401] Add support for Norwegian national library card

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Oct 29 12:11:02 CET 2014


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11401

--- Comment #22 from Magnus Enger <magnus at 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.


More information about the Koha-bugs mailing list