From 9993b4542f27c2667539f84e3c18f398fcff22ce Mon Sep 17 00:00:00 2001 From: Alex Arnaud Date: Fri, 22 Apr 2016 11:03:50 +0200 Subject: [PATCH] [SIGNED-OFF] Bug 13877 - Fix QA issues Signed-off-by: Bernardo Gonzalez Kriegel No koha-qa errors --- .../intranet-tmpl/prog/en/modules/serials/serials-collection.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt index affb3b2..b6b4011 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt @@ -272,11 +272,11 @@ $(document).ready(function() { [% IF ( matches = serial.serialseq.match('(.*)Spring(.*)') ) %] [% matches.0 %]Spring[% matches.1 %] - [% IF ( matches = serial.serialseq.match('(.*)Summer(.*)') ) %] + [% ELSIF ( matches = serial.serialseq.match('(.*)Summer(.*)') ) %] [% matches.0 %]Summer[% matches.1 %] - [% IF ( matches = serial.serialseq.match('(.*)Fall(.*)') ) %] + [% ELSIF ( matches = serial.serialseq.match('(.*)Fall(.*)') ) %] [% matches.0 %]Fall[% matches.1 %] - [% IF ( matches = serial.serialseq.match('(.*)Winter(.*)') ) %] + [% ELSIF ( matches = serial.serialseq.match('(.*)Winter(.*)') ) %] [% matches.0 %]Winter[% matches.1 %] [% ELSE %] [% serial.serialseq %] -- 1.9.1