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

Peter Wemm peter at FreeBSD.org
Fri Jul 18 03:47:22 UTC 2014


Author: peter (src committer)
Date: Fri Jul 18 03:47:21 2014
New Revision: 45334
URL: http://svnweb.freebsd.org/changeset/doc/45334

Log:
  Fix "print (...) interpreted as function"

Modified:
  head/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi

Modified: head/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi	Fri Jul 18 02:41:28 2014	(r45333)
+++ head/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi	Fri Jul 18 03:47:21 2014	(r45334)
@@ -261,17 +261,16 @@ sub PrintPR
 			"FreeBSD has migrated to Bugzilla.  Please check the current <a href='https://bugs.freebsd.org/"
 			. $gnatspr->FieldSingle('Number') . "'/>Bugzilla version</a> of this PR."
 	);
-	print ("<h3>The historical version shown below is likely out of date and is for debugging purposes only!</h3>\n");
+	print "<h3>The historical version shown below is likely out of date and is for debugging purposes only!</h3>\n";
 
-	print ("<h3>" .
+	print "<h3>" .
 		$q->escapeHTML(
 			$gnatspr->FieldSingle('Category')
 			. '/'
 			. $gnatspr->FieldSingle('Number')
 			. ': '
 			. $gnatspr->FieldSingle('Synopsis')
-		) . "</h3>\n"
-	);
+		) . "</h3>\n";
 
 	# Header stuff of interest
 


More information about the svn-doc-head mailing list