Skip to content
Snippets Groups Projects
Commit 06391069 authored by Demian Katz's avatar Demian Katz
Browse files

Merge pull request #266 from quartsize/symfix

Symphony: fix a bug and a notice
parents 368fc07a 033b868a
Branches
Tags
No related merge requests found
......@@ -1241,7 +1241,9 @@ class Symphony extends AbstractBase
$transactions;
foreach ($transactions as $transaction) {
if ($transaction->unseenRenewalsRemaining > 0) {
if (!empty($transaction->unseenRenewalsRemaining)) {
$renewable = true;
} elseif (!empty($transaction->unseenRenewalsRemainingUnlimited)) {
$renewable = true;
} else {
$renewable = false;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment