From 11ce0fe501323bd781fd7ee75edf39ed85232356 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Mon, 31 Oct 2011 01:40:26 +0100 Subject: [PATCH] Bug 7118: Remove 'any' from pull downs in acquisitions The filters on the suggestion page show 'Any' and an empty entry for the filters 'Suggested by', 'Accepted by' and 'Managed by'. Both do the same. It should only be 'Any' or an empty entry, but not both. To test: - check 'Any' is gone, but empty entry still shows - check you can still unset filters 'managed by', 'suggested by' and 'accepted by' --- .../prog/en/modules/suggestion/suggestion.tt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt index 47ee96a..dfaad78 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt @@ -347,7 +347,7 @@ $(document).ready(function() { calcNewsuggTotal(); }); [% IF ( statusselected_REJECTED ) %] [% ELSE %][% END %] -
  • [% FOREACH suggestedby_loo IN suggestedby_loop %][% IF ( suggestedby_loo.selected ) %][% ELSE %][% END %][% END %]
  • [% suggesteddate %] @@ -378,7 +378,7 @@ $(document).ready(function() { calcNewsuggTotal(); });
  • -
  • [% FOREACH managedby_loo IN managedby_loop %][% IF ( managedby_loo.selected ) %][% ELSE %][% END %][% END %]
  • [% manageddate %] @@ -409,7 +409,7 @@ $(document).ready(function() { calcNewsuggTotal(); });
  • -
  • [% FOREACH acceptedby_loo IN acceptedby_loop %][% IF ( acceptedby_loo.selected ) %] [% ELSE %][% END %][% END %]
  • [% accepteddate %] -- 1.7.5.4