Create a user profile page that is used as a landing page when referencing a user in messages or pages.

Partial fix for ticket #889 and a fix for #931.
This commit is contained in:
Tim Almdal
2010-01-23 21:38:01 -08:00
parent a1a3d4f595
commit ed5b07b335
10 changed files with 222 additions and 12 deletions

View File

@@ -8,8 +8,9 @@
width="32"
height="32" />
<?= gallery::date_time($comment->created) ?>
<?= t('<a href="#">%author_name</a> said <em>%comment_text</em>',
<?= t('<a href="%url">%author_name</a> said <em>%comment_text</em>',
array("author_name" => html::clean($comment->author_name()),
"url" => user_profile::url($comment->author_id),
"comment_text" => text::limit_words(nl2br(html::purify($comment->text)), 50))); ?>
</li>
<? endforeach ?>