修改根目录/function/common.func.php文件
查找第2416行- inserttable('postmessages', saddslashes($itemmsg));
- deletetable('spaceitems', array('itemid'=>$value['itemid']));
- deletetable('spacenews', array('itemid'=>$value['itemid']));
复制代码 在之前添加- $_SGLOBAL['db']->query('UPDATE '.tname('attachments').' SET itemid='.$itemmsg['itemid'].' WHERE itemid = \''.$value['itemid'].'\' and hash=\''.$value['hash'].'\'');
复制代码 查找第2464行- empty($value['oitemid']) ? updatespacetagspass($value['itemid'], '1', '1', $itemmsg['itemid']) : updatespacetagspass($value['oitemid'], '1');
复制代码 在之后添加- $_SGLOBAL['db']->query('UPDATE '.tname('attachments').' SET itemid='.$itemmsg['itemid'].' WHERE itemid = \''.$value['itemid'].'\' and hash=\''.$value['hash'].'\'');
复制代码 参考:http://www.365coding.com/html/84/n-384.html |