From: Jason Stephenson Date: Mon, 23 Jul 2012 14:19:13 +0000 (-0400) Subject: Fix PhoneList.pm child_init method. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e4e39e6777ab40ba1cf61728095a9fd34627f8c4;p=evergreen%2Fequinox.git Fix PhoneList.pm child_init method. child_init in an Apache module should return something, so it now returns the OK constant. Signed-off-by: Jason Stephenson Signed-off-by: Lebbeous Fogle-Weekley Signed-off-by: Ben Shum --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/PhoneList.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/PhoneList.pm index a654f5641d..6e6c9fd7b1 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/PhoneList.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/PhoneList.pm @@ -54,6 +54,7 @@ sub child_init { my $idl = OpenSRF::Utils::SettingsClient->new->config_value("IDL"); Fieldmapper->import(IDL => $idl); OpenILS::Utils::CStoreEditor->init; + return Apache2::Const::OK; } sub handler {