aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewforum.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2004-06-06 21:44:49 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2004-06-06 21:44:49 +0000
commitc2834abfae4ac9bc02cb245d1bdb5bf78802ec26 (patch)
tree6691f2409cd2af03de0ac49b1db42d47cce01704 /phpBB/viewforum.php
parentb3d98c8ba1b6f21b4a7c412b94ce5cae80cb4a40 (diff)
downloadforums-c2834abfae4ac9bc02cb245d1bdb5bf78802ec26.tar
forums-c2834abfae4ac9bc02cb245d1bdb5bf78802ec26.tar.gz
forums-c2834abfae4ac9bc02cb245d1bdb5bf78802ec26.tar.bz2
forums-c2834abfae4ac9bc02cb245d1bdb5bf78802ec26.tar.xz
forums-c2834abfae4ac9bc02cb245d1bdb5bf78802ec26.zip
- added folder_moved image
- new feature: bookmark topics - fixed post details link - added confirmation screen to cookie deletion git-svn-id: file:///svn/phpbb/trunk@4912 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r--phpBB/viewforum.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index cb38d98041..a91bd53777 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -72,7 +72,7 @@ else
if (!isset($tracking_topics[$forum_id]) && $user->data['user_id'] != ANONYMOUS)
{
markread('mark', $forum_id);
- redirect($user->cur_page);
+ redirect(str_replace('&amp;', '&', htmlspecialchars((!empty($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : $_ENV['REQUEST_URI'])));
}
}
@@ -272,6 +272,7 @@ if ($forum_data['forum_type'] == FORUM_POST || ($forum_data['forum_flags'] & 16)
'FOLDER_STICKY_NEW_IMG' => $user->img('folder_sticky_new', 'POST_STICKY'),
'FOLDER_ANNOUNCE_IMG' => $user->img('folder_announce', 'POST_ANNOUNCEMENT'),
'FOLDER_ANNOUNCE_NEW_IMG'=> $user->img('folder_announce_new', 'POST_ANNOUNCEMENT'),
+ 'FOLDER_MOVED_IMG' => $user->img('folder_moved', 'TOPIC_MOVED'),
'REPORTED_IMG' => $user->img('icon_reported', 'TOPIC_REPORTED'),
'UNAPPROVED_IMG' => $user->img('icon_unapproved', 'TOPIC_UNAPPROVED'),