From: Alvaro Herrera Date: Tue, 14 Dec 2010 16:55:14 +0000 (+0000) Subject: Use proper negated operator X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=6c3ba6d74e1ff69b3b5cd685d6fe2993c16d12d0;p=pgweb-old.git Use proper negated operator git-svn-id: file:///Users/dpage/pgweb/svn-repo/trunk@2784 8f5c7a92-453e-0410-a47f-ad33c8a6b003 --- diff --git a/archives/bin/resource-common b/archives/bin/resource-common index 716614a0..7a83bcff 100644 --- a/archives/bin/resource-common +++ b/archives/bin/resource-common @@ -12,7 +12,7 @@ have a /. This could probably be a lot cheaper ... --> $addr = $_; -if (!$addr =~ /\//) { +if ($addr !~ /\//) { $addr =~ s/@/(at)/ ; $addr =~ s/\./(dot)/g ; }