diff options
author | terry%netscape.com <> | 1998-09-16 06:49:23 +0200 |
---|---|---|
committer | terry%netscape.com <> | 1998-09-16 06:49:23 +0200 |
commit | 4727e6c09f88e63f02e6c8f359862d0c0942ed36 (patch) | |
tree | 3dec365d9db2c17d4c4ab9eb5297650d09ab24ec /new_comment.cgi | |
parent | d8a4482db94592c936565841ab1a6703fca27d2d (diff) | |
download | bugzilla-4727e6c09f88e63f02e6c8f359862d0c0942ed36.tar.gz bugzilla-4727e6c09f88e63f02e6c8f359862d0c0942ed36.tar.xz |
Everything has been ported to now run under Perl.
Diffstat (limited to 'new_comment.cgi')
-rwxr-xr-x | new_comment.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/new_comment.cgi b/new_comment.cgi index b57caff46..d578aa877 100755 --- a/new_comment.cgi +++ b/new_comment.cgi @@ -31,7 +31,7 @@ foreach $pair (@pairs) $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex($1))/eg; $FORM{$name} = $value; } -open(COMMENTS, ">>comments"); +open(COMMENTS, ">>data/comments"); $c=$FORM{"comment"}; print COMMENTS $FORM{"comment"} . "\n"; close(COMMENTS); |