|
x中多了一个表 forum_post_tableid 我看了下你的接口没有对此接口操作,具体这个表有什么用我不大清楚,但是post的pid应该和这个表里的pid是同步的。
火车官方x1.0的就有
http://board.locoy.com/?post=31- $db->query("INSERT INTO {$tablepre}forum_post_tableid SET `pid`=''");
- $pid=$db->insert_id();
- $db->query("INSERT INTO {$tablepre}forum_post SET `fid`='$cid',`tid`='$tid',`first`='$first',`author`='$username',`authorid`='$uid',`subject`='$title',`dateline`='$timestamp',`message`='$content',`useip`='',`invisible`='0',`anonymous`='0',`usesig`='1',`htmlon`='$htmlon',`bbcodeoff`='$bbcodeoff',`smileyoff`='$smileyoff',`parseurloff`='$parseurloff',`attachment`='0',`tags`='$tag',`pid`='$pid'");
复制代码 |
|