An incorrect filter was added to patron-search.inc: let defer_loading = [% defer_loading | html ? 1 : 0 %]; Filters don't belong inside conditionals. This makes request.pl break with an error: Template process failed: file error - parse error - patron-search.inc line 252: unexpected token (?) [% defer_loading | html ? 1 : 0 %] at /kohadevbox/koha/C4/Templates.pm line 127
(In reply to Owen Leonard from comment #0) > This makes request.pl break with an error ...Or any other page which uses patron-search.inc.
Created attachment 132957 [details] [review] Bug 30455: Incorrect template filter breaks holds This patch removes an incorrect template filter from inside a T:T conditional. This change should fix a non-functional request.pl and anywhere else patron-search.inc is used. The QA failure for a missing filter is a false positive.
Will be patched on 30063