From d70dde5112b6302d64ff2793fa0c38a509dd3c5e Mon Sep 17 00:00:00 2001 From: Terran McCanna Date: Tue, 14 Feb 2023 12:22:51 -0500 Subject: [PATCH] Quipu - Fixes incorrect comparison operator Signed-off-by: Terran McCanna --- Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.11.0