From: ivan Date: Tue, 18 May 2010 19:58:39 +0000 (+0000) Subject: fix InitSignalHandlers patch X-Git-Tag: root_of_svc_elec_features~269 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=363f89201b3ad61da89f2141373864e7e28943eb fix InitSignalHandlers patch --- diff --git a/rt/lib/RT.pm b/rt/lib/RT.pm index f98a74bef..5d2e70425 100644 --- a/rt/lib/RT.pm +++ b/rt/lib/RT.pm @@ -354,11 +354,13 @@ sub InitLogging { )); } } - InitSignalHandlers(); + InitSignalHandlers(%arg); } sub InitSignalHandlers { + my %arg = @_; + # Signal handlers ## This is the default handling of warnings and die'ings in the code ## (including other used modules - maybe except for errors catched by diff --git a/rt/lib/RT.pm.in b/rt/lib/RT.pm.in index 367086de4..77b9d4c9b 100644 --- a/rt/lib/RT.pm.in +++ b/rt/lib/RT.pm.in @@ -354,11 +354,13 @@ sub InitLogging { )); } } - InitSignalHandlers(); + InitSignalHandlers(%arg); } sub InitSignalHandlers { + my %arg = @_; + # Signal handlers ## This is the default handling of warnings and die'ings in the code ## (including other used modules - maybe except for errors catched by