[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:37:50 CET 2014


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

Magnus Enger <magnus at enger.priv.no> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #32889|0                           |1
        is obsolete|                            |

--- Comment #23 from Magnus Enger <magnus at enger.priv.no> ---
Created attachment 32890
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=32890&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

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

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


More information about the Koha-bugs mailing list