From: Chris Sharp Date: Mon, 29 Aug 2022 16:37:31 +0000 (-0400) Subject: further typo fix X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=7d563f36af9dcdc2e7412ab3f7cde1ab61cbbdea;p=evergreen%2Fpines.git further typo fix Signed-off-by: Chris Sharp --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Ecard.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Ecard.pm index d1ad0ab869..20edf11800 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Ecard.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Ecard.pm @@ -362,13 +362,14 @@ sub update_user { if ($temp_renewal == '1') { $au->expire_date( DateTime(now(time_zone => 'local')->add( - seconds => interval_to_seconds('30 days')->iso8601(); + seconds => interval_to_seconds('30 days')->iso8601() + ); } else { $au->profile($perm_grp); my $grp = new_editor()->retrieve_permission_grp_tree($perm_grp); $au->expire_date( DateTime->now(time_zone => 'local')->add( - seconds => interval_to_seconds($grp->perm_interval))->iso8601(); + seconds => interval_to_seconds($grp->perm_interval))->iso8601() ); }