diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-11 22:05:51 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-11 22:05:51 -0500 |
commit | ce123807279506d10f79fdf7214b1ea12b654648 (patch) | |
tree | 29fff07f47e8e548af3db219621121aa2715347f /src/web/_views | |
parent | update error lang (diff) | |
download | website-ce123807279506d10f79fdf7214b1ea12b654648.tar.gz website-ce123807279506d10f79fdf7214b1ea12b654648.tar.bz2 website-ce123807279506d10f79fdf7214b1ea12b654648.zip |
switch to POST for posting comments
Diffstat (limited to '')
-rw-r--r-- | src/web/_views/comments.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/_views/comments.php b/src/web/_views/comments.php index d566549..f67a90b 100644 --- a/src/web/_views/comments.php +++ b/src/web/_views/comments.php @@ -17,7 +17,7 @@ ?> <div class="new"> <h3><?=lang('new_comment_title')?></h3> - <form id="new_comment" method="get" action="<?=$this->get_url('_comments/post')?>"> + <form id="new_comment" method="post" action="<?=$this->get_url('_comments/post')?>"> <div><input type="text" name="author" |