diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-04-03 23:12:52 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-04-03 23:12:52 +0000 |
commit | 802f2431c7da467cbc58a7e970690ff6604e1c84 (patch) | |
tree | 93ae0870bd023aa3cc613dd2228fe215c70b4258 | |
parent | f7435112c54d7d45dee6ba9f747609d9491bbff5 (diff) |
Concatenate chopped up internationalized string.
-rw-r--r-- | modules/comment/views/comments.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment/views/comments.html.php b/modules/comment/views/comments.html.php index 575a7eca..23e1f101 100644 --- a/modules/comment/views/comments.html.php +++ b/modules/comment/views/comments.html.php @@ -1,8 +1,8 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <? if (!$comments->count()): ?> <p> - <?= t("No comments yet. Be the first to") ?> - <a href="#add_comment_form" class="showCommentForm"><?= t("comment") ?></a>! + <?= t("No comments yet. Be the first to <a %attrs>comment</a>!", + array("attrs" => "href=\"#add_comment_form\" class=\"showCommentForm\"")) ?> </p> <? endif ?> <ul id="gComments"> |