diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-03-06 01:08:00 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-03-06 01:08:00 +0000 |
commit | 7132f97d0a09220f31e3bb81accaf91c21702cbb (patch) | |
tree | c4aa85c2370d85cf670a2b2d808cafcc6e497d05 /phpBB/viewtopic.php | |
parent | 799b5fc2dece8a23ad7fb92d531cb8866a6843f5 (diff) | |
download | forums-7132f97d0a09220f31e3bb81accaf91c21702cbb.tar forums-7132f97d0a09220f31e3bb81accaf91c21702cbb.tar.gz forums-7132f97d0a09220f31e3bb81accaf91c21702cbb.tar.bz2 forums-7132f97d0a09220f31e3bb81accaf91c21702cbb.tar.xz forums-7132f97d0a09220f31e3bb81accaf91c21702cbb.zip |
New template var for future use.
git-svn-id: file:///svn/phpbb/trunk@3600 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index aca75c8ffd..0984498974 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -77,7 +77,7 @@ if (isset($_GET['view']) && empty($post_id)) redirect("viewtopic.$phpEx$SID&p=" . $row['post_id'] . "#" . $row['post_id']); } - redirect("index.$phpEx"); + redirect("index.$phpEx$SID"); } else if ($_GET['view'] == 'next' || $_GET['view'] == 'previous') { @@ -347,6 +347,7 @@ $template->assign_vars(array( 'S_TOPIC_ACTION' => "viewtopic.$phpEx$SID&t=" . $topic_id . "&start=$start", 'S_TOPIC_MOD' => ($topic_mod != '') ? '<select name="mode">' . $topic_mod . '</select>' : '', 'S_MOD_ACTION' => "mcp.$phpEx?sid=" . $user->session_id . "&t=$topic_id&quickmod=1", + 'S_WATCH_TOPIC' => $s_watching_topic, 'S_SHOW_SEARCHBOX' => ($auth->acl_gets('f_search', 'm_', 'a_', $forum_id)) ? true : false, 'S_SEARCHBOX_ACTION' => "search.$phpEx$SID&f=$forum_id", @@ -843,11 +844,18 @@ if ($row = $db->sql_fetchrow($result)) 'YIM_IMG' => $user_cache[$poster_id]['yim_img'], 'YIM' => $user_cache[$poster_id]['yim'], + 'S_POST_REPORTED' => (!empty($row['post_reported']) && $auth->acl_gets('m_', 'a_', $forum_id)) ? TRUE : FALSE, + 'U_REPORT' => "report.$phpEx$SID&p=" . $row['post_id'], + 'U_MCP_REPORT' => "mcp.$phpEx$SID&mode=post_details&p=" . $row['post_id'], +// no img yet as I could not get the subSilver to work with PSP - Ashe + 'REPORT_IMG' => $user->img('icon_report', $user->lang['REPORT_TO_ADMIN']), + 'POST_ICON' => (!empty($row['icon_id'])) ? '<img src="' . $config['icons_path'] . '/' . $icons[$row['icon_id']]['img'] . '" width="' . $icons[$row['icon_id']]['width'] . '" height="' . $icons[$row['icon_id']]['height'] . '" alt="" title="" />' : '', 'L_MINI_POST_ALT' => $mini_post_alt, 'S_ROW_COUNT' => $i++, + 'S_POST_APPROVED' => (!empty($row['post_approved'])) ? TRUE : FALSE, 'U_MINI_POST' => $mini_post_url, 'U_POST_ID' => $u_post_id |