View | Details | Raw Unified | Return to bug 14544
Collapse All | Expand All

(-)a/C4/Members.pm (+1 lines)
Lines 42-47 use Text::Unaccent qw( unac_string ); Link Here
42
use Koha::AuthUtils qw(hash_password);
42
use Koha::AuthUtils qw(hash_password);
43
use Koha::Database;
43
use Koha::Database;
44
44
45
use Module::Load qw( load );
45
use Module::Load::Conditional qw( can_load );
46
use Module::Load::Conditional qw( can_load );
46
if ( can_load( modules => { 'Koha::NorwegianPatronDB' => undef } ) ) {
47
if ( can_load( modules => { 'Koha::NorwegianPatronDB' => undef } ) ) {
47
    load Koha::NorwegianPatronDB, qw( NLUpdateHashedPIN NLEncryptPIN NLSync );
48
    load Koha::NorwegianPatronDB, qw( NLUpdateHashedPIN NLEncryptPIN NLSync );
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/virtualshelves-toolbar.inc (-2 / +1 lines)
Lines 4-10 Link Here
4
[% IF op == 'view' %]
4
[% IF op == 'view' %]
5
5
6
    function sendList(){
6
    function sendList(){
7
        open(CGIBIN+'virtualshelves/sendshelf.pl?shelfid=[% shelfnumber %]','win_form','scrollbars=no,resizable=no,height=300,width=450,top=50,left=100');
7
        open(CGIBIN+'virtualshelves/sendshelf.pl?shelfid=[% shelf.shelfnumber %]','win_form','scrollbars=no,resizable=no,height=300,width=450,top=50,left=100');
8
     }
8
     }
9
9
10
     $(document).ready(function() {
10
     $(document).ready(function() {
11
- 

Return to bug 14544