[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 23:55:06 CET 2014


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

--- Comment #27 from Katrin Fischer <katrin.fischer at bsz-bw.de> ---
Created attachment 32952
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=32952&action=edit
[PASSED QA] 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

3) Fix some indentation in patrons.pref, to make xt/yaml_valid.t happy

Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
I couldn't find any regressions with adding, editing and deleting members.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list