From: Terran McCanna Date: Tue, 14 Feb 2023 17:22:51 +0000 (-0500) Subject: Quipu - Fixes incorrect comparison operator X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d70dde5112b6302d64ff2793fa0c38a509dd3c5e;p=evergreen%2Fpines.git Quipu - Fixes incorrect comparison operator Signed-off-by: Terran McCanna --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm index ffcda9a956..4128249ff5 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm @@ -3695,7 +3695,7 @@ sub check_account_exp { $ctx->{account_renew_message} = '
Your account is due for renewal, but it cannot be renewed online. Please visit your nearest PINES library with your current ID and proof of address to update and renew your account.
'; - } elsif ($ctx->{user_stats}->{fines}->{balance_owed} gt 0) { #user has fines + } elsif ($ctx->{user_stats}->{fines}->{balance_owed} > 0) { #user has fines $ctx->{account_renew_message} = '
Your account is due for renewal. Please pay your outstanding fines in order to renew your account.
'; } else {