From e4e39e6777ab40ba1cf61728095a9fd34627f8c4 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Mon, 23 Jul 2012 10:19:13 -0400 Subject: [PATCH] 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 --- Open-ILS/src/perlmods/lib/OpenILS/WWW/PhoneList.pm | 1 + 1 file changed, 1 insertion(+) 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 { -- 2.43.2