[Rt-commit] r9641 - rt/branches/3.6-RELEASE/lib
audreyt at bestpractical.com
audreyt at bestpractical.com
Sun Nov 11 14:58:21 EST 2007
Author: audreyt
Date: Sun Nov 11 14:58:21 2007
New Revision: 9641
Modified:
rt/branches/3.6-RELEASE/lib/RT.pm.in
Log:
* RT.pm.in: Add support for loading RT_Vendor.pm by default
before RT_Local, for greater consistency.
Modified: rt/branches/3.6-RELEASE/lib/RT.pm.in
==============================================================================
--- rt/branches/3.6-RELEASE/lib/RT.pm.in (original)
+++ rt/branches/3.6-RELEASE/lib/RT.pm.in Sun Nov 11 14:58:21 2007
@@ -459,6 +459,8 @@
=cut
+eval "require RT_Vendor";
+die $@ if ($@ && $@ !~ qr{^Can't locate RT_Vendor.pm});
eval "require RT_Local";
die $@ if ($@ && $@ !~ qr{^Can't locate RT_Local.pm});
More information about the Rt-commit
mailing list