diff options
Diffstat (limited to 'modules/comment/views/comment.html.php')
-rw-r--r-- | modules/comment/views/comment.html.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/comment/views/comment.html.php b/modules/comment/views/comment.html.php index 31bb7f4d..1d0786cb 100644 --- a/modules/comment/views/comment.html.php +++ b/modules/comment/views/comment.html.php @@ -4,15 +4,15 @@ <a href="#"> <img src="<?= $comment->author()->avatar_url(40, $theme->url("images/avatar.jpg", true)) ?>" class="gAvatar" - alt="<?= SafeString::of($comment->author_name()) ?>" + alt="<?= html::clean($comment->author_name()) ?>" width="40" height="40" /> </a> <?= t("on %date_time, %author_name said", array("date_time" => gallery::date_time($comment->created), - "author_name" => SafeString::of($comment->author_name()))) ?> + "author_name" => html::clean($comment->author_name()))) ?> </p> <div> - <?= nl2br(SafeString::purify($comment->text)) ?> + <?= nl2br(html::purify($comment->text)) ?> </div> </li> |