diff options
author | ivan <ivan> | 2012-01-21 03:46:24 +0000 |
---|---|---|
committer | ivan <ivan> | 2012-01-21 03:46:24 +0000 |
commit | fb4ab1073f0d15d660c6cdc4e07afebf68ef3924 (patch) | |
tree | e27a6336cc67eb403c9276a6a1967b904ecfdbbe /rt/lib/RT/Base.pm | |
parent | a7de168188ff30192238c20a194c144e2bfd1716 (diff) | |
parent | 24548f7cf666bac02335d0bc74f81251c7b4ab50 (diff) |
This commit was generated by cvs2svn to compensate for changes in r12472,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'rt/lib/RT/Base.pm')
-rw-r--r-- | rt/lib/RT/Base.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rt/lib/RT/Base.pm b/rt/lib/RT/Base.pm index 39708504a..c7fc66e98 100644 --- a/rt/lib/RT/Base.pm +++ b/rt/lib/RT/Base.pm @@ -168,8 +168,8 @@ sub _ImportOverlays { my $class = shift; my ($package,undef,undef) = caller(); $package =~ s|::|/|g; - for (qw(Overlay Vendor Local)) { - my $filename = $package."_".$_.".pm"; + for my $type (qw(Overlay Vendor Local)) { + my $filename = $package."_".$type.".pm"; eval { require $filename }; die $@ if ($@ && $@ !~ qr{^Can't locate $filename}); } |