@@ -, +, @@ forbidden pattern: tab char (line 15) forbidden pattern: tab char (line 21) forbidden pattern: tab char (line 16) forbidden pattern: trailing space char (line 62) forbidden pattern: trailing space char (line 54) --- C4/Breeding.pm | 2 +- .../prog/en/modules/admin/z3950servers.tt | 4 ++-- .../prog/en/modules/help/admin/z3950servers.tt | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) --- a/C4/Breeding.pm +++ a/C4/Breeding.pm @@ -363,7 +363,7 @@ sub _create_connection { #first remove surrounding spaces at comma and equals-sign s/^\s+|\s+$//g; my @temp= split '=', $_, 2; - @temp= map { s/^\s+|\s+$//g; $_; } @temp; + @temp= map { my $c=$_; $c=~s/^\s+|\s+$//g; $c; } @temp; $option1->option( $temp[0] => $temp[1] ) if @temp; } } elsif( $server->{servertype} eq 'zed' ) { --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt @@ -51,7 +51,7 @@ $("#host_docline").hide(); $("#database_docline").hide(); [% IF (server.servertype||type) == 'sru' %] - $("#host_label").hover( + $("#host_label").hover( function( event ) { $("#host_docline").show(); }, @@ -59,7 +59,7 @@ $("#host_docline").hide(); } ); - $("#database_label").hover( + $("#database_label").hover( function( event ) { $("#database_docline").show(); }, --- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/z3950servers.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/help/admin/z3950servers.tt @@ -12,13 +12,13 @@

From the main Z39.50/SRU page, click 'New Z39.50 Server' or 'New SRU server'.