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