summaryrefslogtreecommitdiff
path: root/modules/tracker.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tracker.module')
-rw-r--r--modules/tracker.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tracker.module b/modules/tracker.module
index c4c3e9607..383bd5edb 100644
--- a/modules/tracker.module
+++ b/modules/tracker.module
@@ -47,7 +47,7 @@ function tracker_posts($id = 0) {
$comments = array();
while ($comment = db_fetch_object($cresult)) {
- $comments[] = "<li>". l($comment->subject, "node/view/$node->nid#$comment->cid") ." ". t("by") ." ". format_name($comment) ." ". (node_is_new($comment->nid, $comment->timestamp) ? theme("theme_mark") : "") ."</li>\n";
+ $comments[] = "<li>". t("%subject by %author", array("%subject" => l($comment->subject, "node/view/$node->nid#$comment->cid"), "%author" => format_name($comment))). " ". (node_is_new($comment->nid, $comment->timestamp) ? theme("theme_mark") : "") ."</li>\n";
}
if ($comments) {