- Timestamp:
- Jun 15, 2016, 9:52:13 AM (8 years ago)
- Location:
- trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/d3forum_comment_disp.php
r144 r860 34 34 $xoops_db->query( "UPDATE ".get_xoops_prefix() . $dir_name."_forums SET forum_external_link_format='".$external_link_format."' WHERE forum_id= $forum_id" ) ; 35 35 36 $d3comment = &new xpressD3commentContent( $dir_name , $xpress_dirname ) ;36 $d3comment = new xpressD3commentContent( $dir_name , $xpress_dirname ) ; 37 37 38 38 $post_title = get_the_title(); -
trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/d3forum_comment_synchro.php
r616 r860 486 486 $wp_res = $xoops_db->query($wp_sql); 487 487 if ($wp_res === false) die( '...Err. INSERT' . $wp_comments . '(' . $wp_sql . ')'); 488 $comment_ID = mysql_insert_id();488 $comment_ID = $xoops_db->insert_id; 489 489 $wp_sql = "UPDATE $wp_posts SET comment_count = comment_count +1 WHERE ID = $comment_post_ID"; 490 490 $xoops_db->query($wp_sql); … … 696 696 $sql = "INSERT INTO ".$d3f_posts." SET $set4sql,pid=$reply_pid,topic_id=$topic_id,post_time=$post_time,poster_ip=$poster_ip"; 697 697 $xoops_db->query($sql) ; 698 $post_id = mysql_insert_id();698 $post_id = $xoops_db->insert_id; 699 699 wp_d3forum_sync_topic( $d3forum_dirname , $topic_id ) ; 700 700 … … 729 729 $sql = "INSERT INTO ".$d3f_topic." SET forum_id=$forum_id,topic_invisible=$topic_invisible,topic_external_link_id='".addslashes($topic_external_link_id)."'"; 730 730 $xoops_db->query($sql) ; 731 $topic_id = mysql_insert_id();731 $topic_id = $xoops_db->insert_id; 732 732 // create post in the topic 733 733 $sql = "INSERT INTO ".$d3f_posts." SET $set4sql,topic_id=$topic_id,post_time=$post_time,poster_ip=$poster_ip"; 734 734 $xoops_db->query($sql) ; 735 $post_id = mysql_insert_id();735 $post_id = $xoops_db->insert_id; 736 736 wp_d3forum_sync_topic( $d3forum_dirname , $topic_id , true , true ) ; 737 737 … … 1054 1054 } 1055 1055 1056 $xoops_db->query( "INSERT INTO ".$d3forum_prefix."post_histories SET post_id=$post_id, history_time=UNIX_TIMESTAMP(), data='".mysql_real_escape_string( serialize( $data ) )."'") ;1056 $xoops_db->query( $xoops_db->prepare( "INSERT INTO ".$d3forum_prefix."post_histories SET post_id=$post_id, history_time=UNIX_TIMESTAMP(), data=%s", serialize( $data ) ) ) ; 1057 1057 } 1058 1058 -
trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/user_sync_xoops.php
r665 r860 267 267 $wu_sql .= " , '$user_regist_time', $user_status, '$user_display_name')"; 268 268 $xoops_db->query($wu_sql); 269 $wp_user_id = mysql_insert_id();269 $wp_user_id = $xoops_db->insert_id; 270 270 } else { // WP User ID has not been used yet. 271 271 $wu_sql = "INSERT INTO $db_xpress_users ";
Note: See TracChangeset
for help on using the changeset viewer.