summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/controls/Comments
diff options
context:
space:
mode:
authorwei <>2007-01-15 00:20:41 +0000
committerwei <>2007-01-15 00:20:41 +0000
commitcb7049911b4762807720b01fc4c328d67bbc8004 (patch)
treefc3e206c8f913c2b46653d300eafee5537817afa /demos/quickstart/protected/controls/Comments
parent83d5134b1c28eaf305e7ffc8fcb1e0762c993340 (diff)
remove user link in comments.
Diffstat (limited to 'demos/quickstart/protected/controls/Comments')
-rw-r--r--demos/quickstart/protected/controls/Comments/CommentBlock.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/quickstart/protected/controls/Comments/CommentBlock.php b/demos/quickstart/protected/controls/Comments/CommentBlock.php
index 63b25c72..f2f6e9a1 100644
--- a/demos/quickstart/protected/controls/Comments/CommentBlock.php
+++ b/demos/quickstart/protected/controls/Comments/CommentBlock.php
@@ -99,7 +99,7 @@ class CommentBlock extends TTemplateControl
$content=nl2br(htmlspecialchars($record->content));
return <<<EOD
<div class="comment c-{$record->block_id}">
- <span><a href="#">{$username}</a> on {$record->date_added}.</span>
+ <span><strong>{$username}</strong> on {$record->date_added}.</span>
<div>{$content}</div>
</div>
EOD;