diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-05 00:50:03 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-05 00:50:03 +0000 |
commit | 658f2a4b662a11409c332c4958539bcb5e5d28d0 (patch) | |
tree | f9b623f4b9a72e23f0260944cced5f1b5e4bd6aa /phpBB/includes/functions_display.php | |
parent | cc827946efae40950d2e95b8752cb9367124c09e (diff) | |
download | forums-658f2a4b662a11409c332c4958539bcb5e5d28d0.tar forums-658f2a4b662a11409c332c4958539bcb5e5d28d0.tar.gz forums-658f2a4b662a11409c332c4958539bcb5e5d28d0.tar.bz2 forums-658f2a4b662a11409c332c4958539bcb5e5d28d0.tar.xz forums-658f2a4b662a11409c332c4958539bcb5e5d28d0.zip |
Moved "viewprofile" to memberslist ... consolidation incomplete
git-svn-id: file:///svn/phpbb/trunk@3598 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_display.php')
-rw-r--r-- | phpBB/includes/functions_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 08bc192c50..599394c8e3 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -176,7 +176,7 @@ function display_forums($root_data = '', $display_moderators = TRUE) { $last_post = $user->format_date($row['forum_last_post_time']) . '<br />'; - $last_post .= ($row['forum_last_poster_id'] == ANONYMOUS) ? (($row['forum_last_poster_name'] != '') ? $row['forum_last_poster_name'] . ' ' : $user->lang['GUEST'] . ' ') : '<a href="ucp.' . $phpEx . $SID . '&mode=viewprofile&u=' . $row['forum_last_poster_id'] . '">' . $row['forum_last_poster_name'] . '</a> '; + $last_post .= ($row['forum_last_poster_id'] == ANONYMOUS) ? (($row['forum_last_poster_name'] != '') ? $row['forum_last_poster_name'] . ' ' : $user->lang['GUEST'] . ' ') : "<a href=\"memberlist.$phpEx$SID&mode=viewprofile&u=" . $row['forum_last_poster_id'] . '">' . $row['forum_last_poster_name'] . '</a> '; $last_post .= '<a href="viewtopic.' . $phpEx . $SID . '&f=' . $row['forum_id'] . '&p=' . $row['forum_last_post_id'] . '#' . $row['forum_last_post_id'] . '">' . $user->img('goto_post_latest', 'VIEW_LATEST_POST') . '</a>'; } |