Skip to content

Commit

Permalink
Fix "print (...) interpreted as function"
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkHelmet433 committed Jul 18, 2014
1 parent cdd3304 commit d9be86c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions en_US.ISO8859-1/htdocs/cgi/query-pr.cgi
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d9be86c

Please sign in to comment.