From cd7f6d40f71a933f73d683c0b7f50c0156c2d8ab Mon Sep 17 00:00:00 2001 From: Ere Maijala <ere.maijala@helsinki.fi> Date: Tue, 13 Nov 2018 16:02:39 +0200 Subject: [PATCH] Fix checkCapability call for getAccountBlocks. (#1267) --- module/VuFind/src/VuFind/Controller/MyResearchController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/VuFind/src/VuFind/Controller/MyResearchController.php b/module/VuFind/src/VuFind/Controller/MyResearchController.php index f0f33167189..244b17acbc6 100644 --- a/module/VuFind/src/VuFind/Controller/MyResearchController.php +++ b/module/VuFind/src/VuFind/Controller/MyResearchController.php @@ -465,7 +465,7 @@ class MyResearchController extends AbstractBase */ public function addAccountBlocksToFlashMessenger($catalog, $patron) { - if ($catalog->checkCapability('getAccountBlocks', compact($patron)) + if ($catalog->checkCapability('getAccountBlocks', compact('patron')) && $blocks = $catalog->getAccountBlocks($patron) ) { foreach ($blocks as $block) { -- GitLab