aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-07-09 12:31:33 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-07-09 12:31:33 +0000
commitbdd1643a7d316bdeaeca564412b4f83cd40199fd (patch)
tree1e9a11bb9e84062bb04c83f0b150aeca1b44a866 /phpBB/viewtopic.php
parente083255f661573641167afd52f5c41a0588e49d3 (diff)
downloadforums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar
forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar.gz
forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar.bz2
forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.tar.xz
forums-bdd1643a7d316bdeaeca564412b4f83cd40199fd.zip
- added splitting of topics to mcp
- added merging of posts to mcp - fixed parsing of acl_getf results - adjusted tracking code for important announcements (seems to work now) git-svn-id: file:///svn/phpbb/trunk@4923 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index a44d3bbec1..a8b9f04ad8 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -497,7 +497,7 @@ $template->assign_vars(array(
'L_WATCH_TOPIC' => $s_watching_topic['title'],
'U_BOOKMARK_TOPIC' => ($user->data['user_id'] != ANONYMOUS && $config['allow_bookmarks']) ? $viewtopic_url . '&amp;bookmark=1' : '',
- 'L_BOOKMARK_TOPIC' => ($bookmarked) ? $user->lang['BOOKMARK_TOPIC_REMOVE'] : $user->lang['BOOKMARK_TOPIC'],
+ 'L_BOOKMARK_TOPIC' => ($user->data['user_id'] != ANONYMOUS && $bookmarked) ? $user->lang['BOOKMARK_TOPIC_REMOVE'] : $user->lang['BOOKMARK_TOPIC'],
'U_POST_NEW_TOPIC' => "posting.$phpEx$SID&amp;mode=post&amp;f=$forum_id",
'U_POST_REPLY_TOPIC' => "posting.$phpEx$SID&amp;mode=reply&amp;f=$forum_id&amp;t=$topic_id",