diff options
-rw-r--r-- | rt/lib/RT.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rt/lib/RT.pm b/rt/lib/RT.pm index b375c433a..4372a564d 100644 --- a/rt/lib/RT.pm +++ b/rt/lib/RT.pm @@ -138,6 +138,8 @@ up logging|/InitLogging>, and L<loads plugins|/InitPlugins>. sub Init { + my @arg = @_; + CheckPerlRequirements(); InitPluginPaths(); @@ -146,7 +148,7 @@ sub Init { ConnectToDatabase(); InitSystemObjects(); InitClasses(); - InitLogging(); + InitLogging(@arg); InitPlugins(); RT::I18N->Init; RT->Config->PostLoadCheck; |