From 76f5ad2acf3b63bfc90e09c0a8259317dbfcd323 Mon Sep 17 00:00:00 2001 From: Elliott Davis Date: Wed, 11 Jul 2012 05:52:53 -0500 Subject: [PATCH] Added a URI filter to encode a cardnumber for borrowers as to not break patronimage.pl To Test: Add a + (or any char that would need to be encoded) to a card number of a patron with an image attached. Go to member/moremember.pl. If the patrons image is there, you are golden. http://bugs.koha-community.org/show_bug.cgi?id=8421 Signed-off-by: Owen Leonard Signed-off-by: Paul Poulain --- koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc index 9f1c887127..f2cd877b6a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc @@ -7,7 +7,7 @@
    [% IF ( patronimages ) %] [% IF ( picture ) %] -
  • [% firstname %] [% surname %] ([% cardnumber %])
  • +
  • [% firstname %] [% surname %] ([% cardnumber %])
  • [% ELSE %]
  • [% firstname %] [% surname %] ([% cardnumber %])
  • [% END %] -- 2.39.5