https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29084
Marcel de Rooy <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|BLOCKED |Failed QA --- Comment #7 from Marcel de Rooy <[email protected]> --- I followed the chain up till here and somewhere it goes wrong. But since I discover it here, I will blame this report :) I have a patron with 10 article requests. OPAC shows 10 using [% current_article_requests_count %] Fine! Intranet patron details shows None! What does it use? koha-tmpl/intranet-tmpl/prog/en/includes/patron-article-requests.inc [% IF patron.article_requests_current.count %] There is our famous bottleneck from bug 28883. TT runs the article_requests_current call in LIST context although you think that you are chaining. So the above count does NOT work ! If I do [% SET x = patron.article_requests_current %] [% x.size %] then I see that x contains 10 entries. The problem is somewhere earlier. But I wouldnt mind correcting it here, and not disturb all previous QAs. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
