aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2001-11-22 00:56:55 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2001-11-22 00:56:55 +0000
commit5e184479e63af9d84642d0d17be73d5ce8d63756 (patch)
tree39766b485b126f11a18134a45ea5846c344a4942 /phpBB
parentf6fb36de53036fe1a6e3d6445d5c157a6b5bb780 (diff)
downloadforums-5e184479e63af9d84642d0d17be73d5ce8d63756.tar
forums-5e184479e63af9d84642d0d17be73d5ce8d63756.tar.gz
forums-5e184479e63af9d84642d0d17be73d5ce8d63756.tar.bz2
forums-5e184479e63af9d84642d0d17be73d5ce8d63756.tar.xz
forums-5e184479e63af9d84642d0d17be73d5ce8d63756.zip
Fixed bug #484331
git-svn-id: file:///svn/phpbb/trunk@1411 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/modcp.php4
1 files 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" => '<meta http-equiv="refresh" content="3;url=' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id") . '">')
);
- $message = $lang['Topic_split'] . sprintf($lang['Click_return_topic'], "<a href=\"" . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id") . "\">", "</a>");
+ $message = $lang['Topic_split'] . " " . sprintf($lang['Click_return_topic'], "<a href=\"" . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id") . "\">", "</a>");
message_die(GENERAL_MESSAGE, $message);
}
else