[Rt-commit] r19492 - in rt/3.999/trunk: .
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Thu May 7 02:59:35 EDT 2009
Author: sunnavy
Date: Thu May 7 02:59:34 2009
New Revision: 19492
Modified:
rt/3.999/trunk/ (props changed)
rt/3.999/trunk/lib/RT.pm
Log:
r20317 at sunnavys-mb (orig r18780): sunnavy | 2009-03-13 16:14:06 +0800
temporarily comment Plugins stuff since it does not work yet
Modified: rt/3.999/trunk/lib/RT.pm
==============================================================================
--- rt/3.999/trunk/lib/RT.pm (original)
+++ rt/3.999/trunk/lib/RT.pm Thu May 7 02:59:34 2009
@@ -284,7 +284,8 @@
my $subdir = shift;
my @res;
- foreach my $plugin (grep $_, RT->config->get('Plugins')) {
+# foreach my $plugin ( grep $_, RT->config->get('Plugins') ) {
+ foreach my $plugin ( grep $_, () ) {
my $plugindir = $plugin;
$plugindir =~ s/::/-/g;
my $path = $RT::LocalPluginPath. "/$plugindir";
@@ -328,7 +329,8 @@
my $self = shift;
my @plugins;
require RT::Plugin;
- foreach my $plugin (grep $_, RT->config->get('Plugins')) {
+# foreach my $plugin (grep $_, RT->config->get('Plugins')) {
+ foreach my $plugin (grep $_, () ) {
$plugin->require;
die $UNIVERSAL::require::ERROR if ($UNIVERSAL::require::ERROR);
push @plugins, RT::Plugin->new(name =>$plugin);
More information about the Rt-commit
mailing list