diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2002-10-07 01:07:41 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2002-10-07 01:07:41 +0000 |
commit | a5a63df36f05eda4f5703e20e39082aaffb0eceb (patch) | |
tree | 0950c01497fa821842776308d0a2b933f044c46c /phpBB/includes | |
parent | cf0ac8d63175dc60264bf39ce3b152ee1ef64fbe (diff) | |
download | forums-a5a63df36f05eda4f5703e20e39082aaffb0eceb.tar forums-a5a63df36f05eda4f5703e20e39082aaffb0eceb.tar.gz forums-a5a63df36f05eda4f5703e20e39082aaffb0eceb.tar.bz2 forums-a5a63df36f05eda4f5703e20e39082aaffb0eceb.tar.xz forums-a5a63df36f05eda4f5703e20e39082aaffb0eceb.zip |
Fixed last poster name, dumped categories table.
git-svn-id: file:///svn/phpbb/trunk@2939 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/forums_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/forums_display.php b/phpBB/includes/forums_display.php index 8120576aea..d995afc9de 100644 --- a/phpBB/includes/forums_display.php +++ b/phpBB/includes/forums_display.php @@ -89,7 +89,7 @@ foreach ($forum_rows as $row) { $last_post = create_date($board_config['default_dateformat'], $forum_last_post_time, $board_config['board_timezone']) . '<br />'; - $last_post .= ($user_id == ANONYMOUS) ? (($forum_last_poster_name != '') ? $forum_last_poster_name . ' ' : $lang['Guest'] . ' ') : '<a href="profile.' . $phpEx . $SID . '&mode=viewprofile&u=' . $user_id . '">' . $username . '</a> '; + $last_post .= ($forum_last_poster_id == ANONYMOUS) ? (($forum_last_poster_name != '') ? $forum_last_poster_name . ' ' : $lang['Guest'] . ' ') : '<a href="profile.' . $phpEx . $SID . '&mode=viewprofile&u=' . $forum_last_poster_id . '">' . $username . '</a> '; $last_post .= '<a href="viewtopic.' . $phpEx . '$SID&f=' . $forum_id . '&p=' . $forum_last_post_id . '#' . $forum_last_post_id . '">' . create_img($theme['goto_post_latest'], $lang['View_latest_post']) . '</a>'; } |