diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-11-25 13:40:47 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-11-25 13:40:47 -0800 |
commit | f50dbd992d6973caeaaa3139ddf5f908dd84ec79 (patch) | |
tree | cbdb343de89306a4ed823dc5aa104a802f846dc4 /modules/comment/views | |
parent | 2e420522ece22942a9b3b6ee413ca0e1dfa76148 (diff) | |
parent | dc67cf64813361b34c366123f37d88ef6988fcc8 (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev
Conflicts:
modules/gallery/controllers/rest.php
Diffstat (limited to 'modules/comment/views')
-rw-r--r-- | modules/comment/views/comment.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment/views/comment.html.php b/modules/comment/views/comment.html.php index c7957c15..2c485b53 100644 --- a/modules/comment/views/comment.html.php +++ b/modules/comment/views/comment.html.php @@ -8,9 +8,9 @@ width="40" height="40" /> </a> - <?= t("on %date_time, %author_name said", + <?= t("on %date_time, <a href=\"#\">%name</a> said", array("date_time" => gallery::date_time($comment->created), - "author_name" => html::clean($comment->author_name()))) ?> + "name" => html::clean($comment->author_name()))) ?> </p> <div> <?= nl2br(html::purify($comment->text)) ?> |