http://bugzilla.spamassassin.org/show_bug.cgi?id=3759
------- Additional Comments From [EMAIL PROTECTED] 2004-09-08 18:20 -------
oh, another thing I did:
@@ -117,7 +138,7 @@
# nope. run through all registered plugins and see which ones
# implement this type of callback
my @subs = ();
- foreach my $plugin (sort @{$self->{plugins}}) {
+ foreach my $plugin (@{$self->{plugins}}) {
my $methodref = $plugin->can ($subname);
if (defined $methodref) {
push (@subs, [ $plugin, $methodref ]);
I did this because there's absolutely no reason to sort the plugins there,
they're already loaded in order anyway, and sorting just changes that order!
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.