[Rt-commit] r16632 - rt/3.8/tags/3.8.1/sbin

falcone at bestpractical.com falcone at bestpractical.com
Thu Oct 30 17:28:16 EDT 2008


Author: falcone
Date: Thu Oct 30 17:28:15 2008
New Revision: 16632

Modified:
   rt/3.8/tags/3.8.1/sbin/rt-server.in

Log:
* not init'ing the plugin paths early enough means
  that when CheckIntegrity loads CurrentUser we lose
  the chance to ever load User_* from plugins

Modified: rt/3.8/tags/3.8.1/sbin/rt-server.in
==============================================================================
--- rt/3.8/tags/3.8.1/sbin/rt-server.in	(original)
+++ rt/3.8/tags/3.8.1/sbin/rt-server.in	Thu Oct 30 17:28:15 2008
@@ -80,6 +80,7 @@
 if (RT->Config->Get('DevelMode')) { require Module::Refresh; }
 
 RT::CheckPerlRequirements();
+RT::InitPluginPaths();
 
 my $port = shift @ARGV || RT->Config->Get('WebPort') || '8080';
 


More information about the Rt-commit mailing list