Fix typo in previous commit.

This commit is contained in:
Jun Kuriyama 2002-04-17 08:15:39 +00:00
parent 74fc306920
commit f25a592f67
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=12818
2 changed files with 5 additions and 5 deletions

View file

@ -52,11 +52,11 @@
#
# _________________________________________________________________
#
# $FreeBSD: www/en/cgi/missing_handler.cgi,v 1.10 2001/01/01 19:46:55 wosch Exp $
# $FreeBSD: www/en/cgi/missing_handler.cgi,v 1.11 2002/04/17 05:03:38 kuriyama Exp $
# ----------------------------------------------------------------------
sub escape($) { s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; $_; }
sub escape2($) { s/</&lt;/g; s/>/&gt;/g; $_; }
sub escape($) { $_ = $_[0]; s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; $_; }
sub escape2($) { $_ = $_[0]; s/</&lt;/g; s/>/&gt;/g; $_; }
# output title
$title = $ENV{'MISSING_HANDLER_TITLE'} ||

View file

@ -26,9 +26,9 @@
# pds.cgi - FreeBSD Ports download sources cgi script
# print a list of source files for a port
#
# $FreeBSD: www/en/cgi/pds.cgi,v 1.7 2000/12/28 13:12:50 wosch Exp $
# $FreeBSD: www/en/cgi/pds.cgi,v 1.8 2002/04/17 05:03:38 kuriyama Exp $
sub escape($) { s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; $_; }
sub escape($) { $_ = $_[0]; s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; $_; }
$hsty_base = '';
$hsty_email = 'ports@FreeBSD.org';