svn commit: r45687 - head/en_US.ISO8859-1/htdocs/cgi

Gavin Atkinson gavin at FreeBSD.org
Sun Sep 28 11:31:26 UTC 2014


Author: gavin
Date: Sun Sep 28 11:31:25 2014
New Revision: 45687
URL: http://svnweb.freebsd.org/changeset/doc/45687

Log:
  Replace the "o" modifier to the pattern match, lost in previous revision.

Modified:
  head/en_US.ISO8859-1/htdocs/cgi/ports.cgi

Modified: head/en_US.ISO8859-1/htdocs/cgi/ports.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/ports.cgi	Sat Sep 27 13:30:57 2014	(r45686)
+++ head/en_US.ISO8859-1/htdocs/cgi/ports.cgi	Sun Sep 28 11:31:25 2014	(r45687)
@@ -240,7 +240,7 @@ sub readindex {
     };
 
     while (<C>) {
-        next if $query && !/$query/i;
+        next if $query && !/$query/oi;
         chop;
 
         @tmp            = split(/\|/);


More information about the svn-doc-head mailing list