From 5e184479e63af9d84642d0d17be73d5ce8d63756 Mon Sep 17 00:00:00 2001 From: James Atkinson Date: Thu, 22 Nov 2001 00:56:55 +0000 Subject: [PATCH] Fixed bug #484331 git-svn-id: file:///svn/phpbb/trunk@1411 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/modcp.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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