summaryrefslogtreecommitdiffstats
path: root/new_comment.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'new_comment.cgi')
-rwxr-xr-xnew_comment.cgi2
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);