]> git.koha-community.org Git - koha.git/commit
Bug 29510: Make objects.find call search_limited if present
authorTomas Cohen Arazi <tomascohen@theke.io>
Wed, 17 Nov 2021 21:03:00 +0000 (18:03 -0300)
committerWainui Witika-Park <wainuiwitikapark@catalyst.net.nz>
Wed, 27 Mar 2024 05:30:13 +0000 (05:30 +0000)
commita8211f9fa163d6b72ba19248f94a65f98c80f51b
tree821d78b7f9a0c61efdde60523a93f950ea120b82
parent25d7ba548e0c4682a26b4e8b7db545b6824875c5
Bug 29510: Make objects.find call search_limited if present

This patch makes objects.find implicitly update the passed
*$result_set* to use search_limited. This way no object leaks could
happen without noticing.

To test:
1. Apply the regression tests patch
2. Run:
   $ kshell
  k$ prove t/db_dependent/Koha/REST/Plugin/Objects.t
=> FAIL: Tests fail because search_limited is not used
3. Apply this patch
4. Repeat 2
=> SUCCESS: Tests pass! Results are correctly filtered based on userenv!
5. Sign off :-D

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Wainui Witika-Park <wainuiwitikapark@catalyst.net.nz>
Koha/REST/Plugin/Objects.pm