diff --git a/phpBB/modcp.php b/phpBB/modcp.php
index 599798ee19..6b9555f6e5 100644
--- a/phpBB/modcp.php
+++ b/phpBB/modcp.php
@@ -748,7 +748,7 @@ switch($mode)
{
$sql = "UPDATE " . POSTS_TABLE . "
SET topic_id = $new_topic_id
- WHERE post_time > $post_time
+ WHERE post_time >= $post_time
AND topic_id = $topic_id";
}
@@ -765,7 +765,7 @@ switch($mode)
"META" => '')
);
- $message = $lang['Topic_split'] . sprintf($lang['Click_return_topic'], "", "");
+ $message = $lang['Topic_split'] . " " . sprintf($lang['Click_return_topic'], "", "");
message_die(GENERAL_MESSAGE, $message);
}
else