From: dbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4> Date: Thu, 7 Jan 2010 00:19:56 +0000 (+0000) Subject: We don't actually have access to the config from $self, but we can get it from OpenIL... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9417579223b8e610ee9aefd5fe048d9f3efaf16c;p=evergreen%2Fmasslnc.git We don't actually have access to the config from $self, but we can get it from OpenILS::SIP git-svn-id: svn://svn.open-ils.org/ILS/trunk@15268 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm b/Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm index e07e00eb42..933ec17e83 100644 --- a/Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm +++ b/Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm @@ -419,7 +419,7 @@ sub overdue_items { syslog('LOG_DEBUG', "OILS: overdue_items() fleshing circs @overdues"); - my @return_datatype = grep { $_->{name} eq 'msg64_summary_datatype' } @{$self->{config}->{implementation_config}->{options}->{option}}; + my @return_datatype = grep { $_->{name} eq 'msg64_summary_datatype' } OpenILS::SIP::config()->{implementation_config}->{options}->{option}; for my $circid (@overdues) { next unless $circid; @@ -466,7 +466,7 @@ sub charged_items { my @c; syslog('LOG_DEBUG', "OILS: charged_items() fleshing circs @charges"); - my @return_datatype = grep { $_->{name} eq 'msg64_summary_datatype' } @{$self->{config}->{implementation_config}->{options}->{option}}; + my @return_datatype = grep { $_->{name} eq 'msg64_summary_datatype' } OpenILS::SIP::config()->{implementation_config}->{options}->{option}; for my $circid (@charges) { next unless $circid;