@@ -, +, @@ --- .../prog/en/modules/circ/pendingreserves.tt | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -42,7 +42,11 @@ $(document).ready(function() { $("#homebranchfilter").each( function () { $(this).html( createSelect( holdst.fnGetColumnData(4) ) ); $('select', this).change( function () { - holdst.fnFilter( $(this).val(), 4 ); + var filter_value = $(this).val(); + if(filter_value){ + filter_value = "(^|>)"+filter_value+"($|<)"; + } + holdst.fnFilter( filter_value, 4, true ); } ); } ); $("#itypefilter").each( function () { --