|
From: James A. <th...@us...> - 2001-11-22 00:57:00
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv27941
Modified Files:
modcp.php
Log Message:
Fixed bug #484331
Index: modcp.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/modcp.php,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -r1.45 -r1.46
*** modcp.php 2001/11/14 20:21:01 1.45
--- modcp.php 2001/11/22 00:56:55 1.46
***************
*** 749,753 ****
$sql = "UPDATE " . POSTS_TABLE . "
SET topic_id = $new_topic_id
! WHERE post_time > $post_time
AND topic_id = $topic_id";
}
--- 749,753 ----
$sql = "UPDATE " . POSTS_TABLE . "
SET topic_id = $new_topic_id
! WHERE post_time >= $post_time
AND topic_id = $topic_id";
}
***************
*** 766,770 ****
);
! $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);
}
--- 766,770 ----
);
! $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);
}
|