Bugzilla – Attachment 5126 Details for
Bug 6458
incorrect parsing result in translation processing
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Signed off patch correcting overdue.tt
0001-5-SIGNED-OFF-Bug-6458-Incorrect-translation-processing.patch (text/plain), 2.66 KB, created by
Owen Leonard
on 2011-08-24 20:08:02 UTC
(
hide
)
Description:
Signed off patch correcting overdue.tt
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2011-08-24 20:08:02 UTC
Size:
2.66 KB
patch
obsolete
>From c0dd06681c28327eb0f4a45a9aa0444e5a15590f Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <Katrin.Fischer.83@web.de> >Date: Mon, 22 Aug 2011 22:46:28 +0200 >Subject: [PATCH] [SIGNED-OFF] Bug 6458: Incorrect translation processing / overdue.tt >Content-Type: text/plain; charset="utf-8" > >Patch removes template directives from within HTML tags from >circulation > overdues. > >Problems were related to patron flags pull down and sort by loop for patron attributes. > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> >--- > .../intranet-tmpl/prog/en/modules/circ/overdue.tt | 12 ++++++++---- > 1 files changed, 8 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt >index 2f5ed82..3e8dfba 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt >@@ -178,9 +178,12 @@ > <li><label>Patron flags:</label> > <select name="borflag" size="1" id="borflag"> > <option value="">None</option> >- <option value="gonenoaddress"[% IF ( borflag_gonenoaddress ) %] selected="selected"[% END %]>Address in question</option> >- <option value="debarred"[% IF ( borflag_debarred ) %] selected="selected"[% END %]>Restricted</option> >- <option value="lost"[% IF ( borflag_lost ) %] selected="selected"[% END %]>Lost Card</option> >+ [% IF ( borflag_gonenoaddress ) %]<option value="gonenoaddress" selected="selected">Address in question</option> >+ [% ELSE %]<option value="gonenoaddress">Address in question</option>[% END %] >+ [% IF ( borflag_debarred ) %]<option value="debarred" selected="selected">Restricted</option> >+ [% ELSE %]<option value="debarred">Restricted</option>[% END %] >+ [% IF ( borflag_lost ) %]<option value="lost" selected="selected">Lost Card</option> >+ [% ELSE %]<option value="lost">Lost Card</option>[% END %] > </select> > </li> > [% FOREACH patron_attr_filter_loo IN patron_attr_filter_loop %] >@@ -251,7 +254,8 @@ > </option> > [% END %] > [% FOREACH patron_attr_order_loo IN patron_attr_order_loop %] >- <option value="[% patron_attr_order_loo.value |html %]"[% IF ( patron_attr_order_loo.selected ) %] selected="selected"[% END %]>[% patron_attr_order_loo.label %]</option> >+ [% IF ( patron_attr_order_loo.selected ) %]<option value="[% patron_attr_order_loo.value |html %]" selected="selected">[% patron_attr_order_loo.label %]</option> >+ [% ELSE %]<option value="[% patron_attr_order_loo.value |html %]">[% patron_attr_order_loo.label %]</option>[% END %] > [% END %] > </select></li> > >-- >1.7.3 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 6458
:
4695
|
4697
|
4699
|
4729
|
4968
|
5070
|
5071
|
5072
|
5074
|
5078
|
5079
|
5080
|
5081
|
5082
|
5090
|
5091
|
5092
|
5093
|
5094
|
5095
|
5096
|
5121
|
5125
|
5126
|
5127
|
5128
|
5129
|
5130
|
5131
|
5132
|
5133
|
5147
|
5148
|
5149
|
5150
|
5152
|
5153
|
5155
|
5156
|
5157
|
5158
|
5159
|
5160
|
5168
|
5169
|
5170
|
5258
|
5259
|
5260
|
5261
|
5262
|
5263
|
5273
|
5274
|
5286
|
5287
|
5288
|
5289
|
5292
|
5293
|
5299
|
5300
|
5416
|
5417
|
5418
|
5419
|
5420
|
5425
|
5426
|
5427