https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19704
--- Comment #4 from David Cook <[email protected]> --- "OpacHiddenItems" is such a pain... I was thinking that it's too bad that we don't just save a "hidden" status when items are saved, but then I remembered that you can update "OpacHiddenItems" at any time, and that can dramatically change which records are hidden, and it would be expensive to re-calculate a stored state for every record as a result... But with C4::Circulation::GetTopIssues, we need to process every record fetched to see if it's hidden... I suppose we could fetch $count and if X records are hidden then we need to fetch at least X new records (based off the $count offset) to try to fill in the gaps. It wouldn't be very efficient but it might be the only way of working with the current "hidden" model... -- You are receiving this mail because: You are the assignee for the bug. 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/
