diff --git a/module/VuFind/src/VuFind/ILS/Driver/Symphony.php b/module/VuFind/src/VuFind/ILS/Driver/Symphony.php index e7d0ecb83c12359cbab54a28ea511ab2fe92e449..a86e5d8341d08a7f4e8681c52a36ee5e48e6807a 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Symphony.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Symphony.php @@ -1241,9 +1241,9 @@ class Symphony extends AbstractBase $transactions; foreach ($transactions as $transaction) { - if (!empty($transaction->unseenRenewalsRemaining)) { - $renewable = true; - } elseif (!empty($transaction->unseenRenewalsRemainingUnlimited)) { + if (!empty($transaction->unseenRenewalsRemaining) + || !empty($transaction->unseenRenewalsRemainingUnlimited) + ) { $renewable = true; } else { $renewable = false;