diff options
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/pkg_comments.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/web/template/pkg_comments.php b/web/template/pkg_comments.php index 7bcf708b..de13513d 100644 --- a/web/template/pkg_comments.php +++ b/web/template/pkg_comments.php @@ -14,12 +14,11 @@ echo $durl; } if ($SID) { - echo __("Comment by: %h%s%h on %s", - "<a href='account.php?Action=AccountInfo&ID=".$carr["UsersID"]."'><b>", - $carr["UserName"], "</b></a>", gmdate("Y m d [H:i:s]", $carr["CommentTS"])); + echo __("Comment by: %s on %s", + "<a href='account.php?Action=AccountInfo&ID=" . $carr["UsersID"] . "'><b>" . $carr["UserName"] . "</b></a>", gmdate("Y m d [H:i:s]", $carr["CommentTS"])); } else { - echo __("Comment by: %h%s%h on %s", - "<b>", $carr["UserName"], "</b>", + echo __("Comment by: %s on %s", + '<b>' . $carr['UserName'] . '</b>', gmdate("Y m d [H:i:s]", $carr["CommentTS"])); } ?> |