diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-12-28 16:21:17 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-12-28 16:21:17 +0000 |
commit | d6ef968a679f97e60d62bfae7ac2856cb8334591 (patch) | |
tree | 9095cb5a225ef2f92050d05212cfa138f247bee4 /phpBB/viewtopic.php | |
parent | 69ef685cde40bb014e8e5a3872baa77136bdd7fb (diff) | |
download | forums-d6ef968a679f97e60d62bfae7ac2856cb8334591.tar forums-d6ef968a679f97e60d62bfae7ac2856cb8334591.tar.gz forums-d6ef968a679f97e60d62bfae7ac2856cb8334591.tar.bz2 forums-d6ef968a679f97e60d62bfae7ac2856cb8334591.tar.xz forums-d6ef968a679f97e60d62bfae7ac2856cb8334591.zip |
- made sure ranks are displayed correctly (used RANK instead of RANK_TITLE)
- #6630
- hide a few links from bots (forum/topic marking, memberlist, post/reply/quote/edit/etc. buttons) [#6354]
- #5698
git-svn-id: file:///svn/phpbb/trunk@6818 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 73d8c161bc..ee15a89d7a 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1382,9 +1382,9 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i) 'POST_AUTHOR' => get_username_string('username', $poster_id, $row['username'], $row['user_colour'], $row['post_username']), 'U_POST_AUTHOR' => get_username_string('profile', $poster_id, $row['username'], $row['user_colour'], $row['post_username']), - 'POSTER_RANK' => $user_cache[$poster_id]['rank_title'], - 'RANK_IMAGE' => $user_cache[$poster_id]['rank_image'], - 'RANK_IMAGE_SRC' => $user_cache[$poster_id]['rank_image_src'], + 'RANK_TITLE' => $user_cache[$poster_id]['rank_title'], + 'RANK_IMG' => $user_cache[$poster_id]['rank_image'], + 'RANK_IMG_SRC' => $user_cache[$poster_id]['rank_image_src'], 'POSTER_JOINED' => $user_cache[$poster_id]['joined'], 'POSTER_POSTS' => $user_cache[$poster_id]['posts'], 'POSTER_FROM' => $user_cache[$poster_id]['from'], |