From: Owen Leonard Date: Fri, 26 Aug 2011 20:07:46 +0000 (-0400) Subject: Fix for Bug 6458 - incorrect parsing result in translation processing / branches X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=3e1203c95e53422015885a2add288d5cbc9f8733;p=koha.git Fix for Bug 6458 - incorrect parsing result in translation processing / branches Correction for branch admin template stops tag attribute markup from being passed to the template directly in favor of using template logic. Signed-off-by: Katrin Fischer Signed-off-by: Chris Cormack --- diff --git a/admin/branches.pl b/admin/branches.pl index d6388f526e..12c49e28ba 100755 --- a/admin/branches.pl +++ b/admin/branches.pl @@ -254,15 +254,15 @@ sub editbranchform { # # We export a "categoryloop" array to the template, each element of which # contains separate 'categoryname', 'categorycode', 'codedescription', and - # 'checked' fields. The $checked field is either '' or 'checked="checked"' + # 'checked' fields. The $checked field is either empty or 1' my $catinfo = GetBranchCategory(); my @categoryloop = (); foreach my $cat (@$catinfo) { - my $checked = ""; + my $checked; my $tmp = quotemeta( $cat->{'categorycode'} ); if ( grep { /^$tmp$/ } @{ $data->{'categories'} } ) { - $checked = "checked=\"checked\""; + $checked = 1; } push @categoryloop, { categoryname => $cat->{'categoryname'}, diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt index 42ddb52a59..1107624980 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt @@ -99,7 +99,12 @@
    [% FOREACH categoryloo IN categoryloop %]
  1. - [% categoryloo.codedescription %] + [% IF ( categoryloo.checked ) %] + + [% ELSE %] + + [% END %] + [% categoryloo.codedescription %]
  2. [% END %]