[Rt-commit] r16633 - rt/3.8/tags/3.8.1/bin

falcone at bestpractical.com falcone at bestpractical.com
Thu Oct 30 17:40:39 EDT 2008


Author: falcone
Date: Thu Oct 30 17:40:39 2008
New Revision: 16633

Modified:
   rt/3.8/tags/3.8.1/bin/webmux.pl.in

Log:
* not init'ing the plugin paths early enough means that
  when RT::Interface::Web drags in SavedSearches we
  drag in CurrentUser and then User and make it impossible
  for any Plugins to ever overlay those modules

Modified: rt/3.8/tags/3.8.1/bin/webmux.pl.in
==============================================================================
--- rt/3.8/tags/3.8.1/bin/webmux.pl.in	(original)
+++ rt/3.8/tags/3.8.1/bin/webmux.pl.in	Thu Oct 30 17:40:39 2008
@@ -98,6 +98,7 @@
 BEGIN {
     RT::LoadConfig();
     if (RT->Config->Get('DevelMode')) { require Module::Refresh; }
+    RT::InitPluginPaths();
 }
 
 


More information about the Rt-commit mailing list