X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst.pm;h=b38be49f847921ba79d89f524a4460a64782a556;hp=e877ac87dcfc7d3a90028f6e23f2543d1e429309;hb=33632a44f189d7d49c8060076e382f2df36d7283;hpb=3d9697664c7df9c575ddff90a012cd565c4f1179 diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index e877ac8..b38be49 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -76,7 +76,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.80004'; +our $VERSION = '5.80005'; { my $dev_version = $VERSION =~ /_\d{2}$/; @@ -2505,9 +2505,8 @@ the plugin name does not begin with C. my @plugins = map { s/\A\+// ? $_ : "Catalyst::Plugin::$_" } @$plugins; - Class::MOP::load_class($_) for @plugins; - for my $plugin ( reverse @plugins ) { + Class::MOP::load_class($plugin); my $meta = find_meta($plugin); next if $meta && $meta->isa('Moose::Meta::Role');