fix: don't show user password

This commit is contained in:
NunoSempere 2022-03-10 07:56:58 +00:00
parent c3d9d4493e
commit 223696b019

View File

@ -4,7 +4,11 @@
% for(c in `{ls $comments_dir/}) {
% if(test -s $c/body) {
<div class="comment">
<h5>By: <i>%(`{cat $c/user}%)</i></b> (%(`{cat $c/posted}%))
<h5>By:
<b><i>%
(`{cat $c/user | sed 's/:.*//g'}%)
</i></b>
(%(`{cat $c/posted}%))
</h5>
% cat $c/body | escape_html | sed 's,$,<br>,'
<hr></div>