[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.9.7-869-gd490a61

Shawn Moore sartak at bestpractical.com
Mon Dec 13 22:43:31 EST 2010


The branch, 3.9-trunk has been updated
       via  d490a61f81d7f4c1bc2d084ebdebc44bbc0066a0 (commit)
      from  f779a94ab9349db3e56d6bbb95e01042912134fe (commit)

Summary of changes:
 lib/RT/Base.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

- Log -----------------------------------------------------------------
commit d490a61f81d7f4c1bc2d084ebdebc44bbc0066a0
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Mon Dec 13 22:37:16 2010 -0500

    Kill one more !~ qr{}

diff --git a/lib/RT/Base.pm b/lib/RT/Base.pm
index fc746c6..6eecc09 100755
--- a/lib/RT/Base.pm
+++ b/lib/RT/Base.pm
@@ -158,7 +158,7 @@ sub _ImportOverlays {
     for (qw(Overlay Vendor Local)) {
         my $filename = $package."_".$_.".pm";
         eval { require $filename };
-        die $@ if ($@ && $@ !~ qr{^Can't locate $filename});
+        die $@ if ($@ && $@ !~ m{^Can't locate $filename});
     }
 }
 

-----------------------------------------------------------------------


More information about the Rt-commit mailing list