mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Fixed bug #484331
git-svn-id: file:///svn/phpbb/trunk@1411 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
f6fb36de53
commit
5e184479e6
1 changed files with 2 additions and 2 deletions
|
@ -748,7 +748,7 @@ switch($mode)
|
||||||
{
|
{
|
||||||
$sql = "UPDATE " . POSTS_TABLE . "
|
$sql = "UPDATE " . POSTS_TABLE . "
|
||||||
SET topic_id = $new_topic_id
|
SET topic_id = $new_topic_id
|
||||||
WHERE post_time > $post_time
|
WHERE post_time >= $post_time
|
||||||
AND topic_id = $topic_id";
|
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") . '">')
|
"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);
|
message_die(GENERAL_MESSAGE, $message);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue