aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_display.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-01-30 15:54:27 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-01-30 15:54:27 +0000
commit8ee977f1d1cfbf86ed3938da710c00ca9ad40c44 (patch)
tree68650b4c86c4829f8fecc5b1d77422892adcc7ec /phpBB/includes/functions_display.php
parent87cd557369c368b55b4af9e26ef03de5ec259d99 (diff)
downloadforums-8ee977f1d1cfbf86ed3938da710c00ca9ad40c44.tar
forums-8ee977f1d1cfbf86ed3938da710c00ca9ad40c44.tar.gz
forums-8ee977f1d1cfbf86ed3938da710c00ca9ad40c44.tar.bz2
forums-8ee977f1d1cfbf86ed3938da710c00ca9ad40c44.tar.xz
forums-8ee977f1d1cfbf86ed3938da710c00ca9ad40c44.zip
Case changes, fix forum_id in nav, fix forum_id in posting success msg
git-svn-id: file:///svn/phpbb/trunk@3422 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_display.php')
-rw-r--r--phpBB/includes/functions_display.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php
index bb987fcbf1..16228dee88 100644
--- a/phpBB/includes/functions_display.php
+++ b/phpBB/includes/functions_display.php
@@ -175,7 +175,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 . '&amp;mode=viewprofile&amp;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="ucp.' . $phpEx . $SID . '&amp;mode=viewprofile&amp;u=' . $row['forum_last_poster_id'] . '">' . $row['forum_last_poster_name'] . '</a> ';
$last_post .= '<a href="viewtopic.' . $phpEx . $SID . '&amp;f=' . $row['forum_id'] . '&amp;p=' . $row['forum_last_post_id'] . '#' . $row['forum_last_post_id'] . '">' . $user->img('goto_post_latest', 'View_latest_post') . '</a>';
}