diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-08-08 01:34:07 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-08-08 01:34:07 -0700 |
commit | 770f3a75102d13771e1daeb46f2a9c9108f615ba (patch) | |
tree | 320d4dbda10769b8d4f47af3f73e97cf13515f51 | |
parent | 31aae8ccdeb214609f96b31a6d8f6dc4614a93b7 (diff) |
port our RT.pm.in changes to RT.pm in RT4
-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; |