diff --git a/phpBB/language/en/posting.php b/phpBB/language/en/posting.php index fae9f6124c..8016a233fd 100644 --- a/phpBB/language/en/posting.php +++ b/phpBB/language/en/posting.php @@ -167,6 +167,7 @@ $lang = array_merge($lang, array( 'POST_ICON' => 'Post icon', 'POST_NORMAL' => 'Normal', 'POST_REVIEW' => 'Post review', + 'POST_REVIEW_EDIT' => 'Post review', 'POST_REVIEW_EDIT_EXPLAIN' => 'This post has been altered by another user while you were editing it. You may wish to review the current version of this post and adjust your edits.', 'POST_REVIEW_EXPLAIN' => 'At least one new post has been made to this topic. You may wish to review your post in light of this.', 'POST_STORED' => 'This message has been posted successfully.', diff --git a/phpBB/posting.php b/phpBB/posting.php index de5cdb9c6a..53746437ba 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -727,6 +727,7 @@ if ($submit || $preview || $refresh) $template->assign_vars(array( 'S_POST_REVIEW' => true, + 'L_POST_REVIEW' => $user->lang['POST_REVIEW_EDIT'], 'L_POST_REVIEW_EXPLAIN' => $user->lang['POST_REVIEW_EDIT_EXPLAIN'], )); }