From 366c858d6358aebabf374b40e56c1376aec34df4 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 7 Apr 2002 00:21:50 +0000 Subject: [PATCH] Fix 'forget' topic type when previewing. git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@2496 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/posting.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/phpBB/posting.php b/phpBB/posting.php index 2bdb201032..93286ccfb7 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -82,17 +82,17 @@ if ( isset($HTTP_POST_VARS['cancel']) ) else if ( $topic_id ) { $redirect = "viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id"; - $post_append = ""; + $post_append = ''; } else if ( $forum_id ) { $redirect = "viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id"; - $post_append = ""; + $post_append = ''; } else { $redirect = "index.$phpEx"; - $post_append = ""; + $post_append = ''; } $header_location = ( @preg_match('/Microsoft|WebSTAR|Xitami/', getenv('SERVER_SOFTWARE')) ) ? 'Refresh: 0; URL=' : 'Location: '; @@ -871,7 +871,7 @@ if ( $mode == 'newtopic' || ( $mode == 'editpost' && $post_data['first_post'] ) if( $is_auth['auth_sticky'] ) { $topic_type_toggle .= ' ' . $lang['Post_Normal'] . '  ' . $topic_type_toggle; + $topic_type_toggle = $lang['Post_topic_as'] . ': ' . $lang['Post_Normal'] . '  ' . $topic_type_toggle; } } @@ -1082,4 +1082,4 @@ $template->pparse('body'); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); -?> +?> \ No newline at end of file