Changeset 5428
- Timestamp:
- 07/07/2014 03:26:49 PM (11 years ago)
- Location:
- trunk/src/includes/admin
- Files:
-
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converter.php
r5427 r5428 1062 1062 1063 1063 if ( !empty( $this->sync_table ) ) { 1064 $query = 'SELECT value_id, meta_value FROM ' . $this->sync_table_name . ' WHERE meta_key = "_bbp_forum_parent_id" AND meta_value > 0 LIMIT ' . $start . ', ' . $this->max_rows;1064 $query = 'SELECT value_id, meta_value FROM ' . $this->sync_table_name . ' WHERE meta_key = "_bbp_old_forum_parent_id" AND meta_value > 0 LIMIT ' . $start . ', ' . $this->max_rows; 1065 1065 } else { 1066 $query = 'SELECT post_id AS value_id, meta_value FROM ' . $this->wpdb->postmeta . ' WHERE meta_key = "_bbp_forum_parent_id" AND meta_value > 0 LIMIT ' . $start . ', ' . $this->max_rows;1066 $query = 'SELECT post_id AS value_id, meta_value FROM ' . $this->wpdb->postmeta . ' WHERE meta_key = "_bbp_old_forum_parent_id" AND meta_value > 0 LIMIT ' . $start . ', ' . $this->max_rows; 1067 1067 } 1068 1068 -
trunk/src/includes/admin/converters/AEF.php
r5427 r5428 39 39 'from_fieldname' => 'par_board_id', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/Drupal7.php
r5427 r5428 43 43 'from_expression' => 'LEFT JOIN taxonomy_vocabulary AS taxonomy_vocabulary USING (vid) WHERE module = "forum"', 44 44 'to_type' => 'forum', 45 'to_fieldname' => '_bbp_ forum_parent_id'45 'to_fieldname' => '_bbp_old_forum_parent_id' 46 46 ); 47 47 -
trunk/src/includes/admin/converters/Example.php
r5427 r5428 41 41 'from_fieldname' => 'the_parent_id', 42 42 'to_type' => 'forum', 43 'to_fieldname' => '_bbp_ forum_parent_id'43 'to_fieldname' => '_bbp_old_forum_parent_id' 44 44 ); 45 45 -
trunk/src/includes/admin/converters/Invision.php
r5427 r5428 39 39 'from_fieldname' => 'parent_id', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/Kunena1.php
r5426 r5428 39 39 'from_fieldname' => 'parent', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/Kunena2.php
r5426 r5428 40 40 'from_fieldname' => 'parent_id', 41 41 'to_type' => 'forum', 42 'to_fieldname' => '_bbp_ forum_parent_id'42 'to_fieldname' => '_bbp_old_forum_parent_id' 43 43 ); 44 44 -
trunk/src/includes/admin/converters/Kunena3.php
r5426 r5428 39 39 'from_fieldname' => 'parent_id', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/Mingle.php
r5427 r5428 39 39 'from_fieldname' => 'parent_id', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/MyBB.php
r5427 r5428 39 39 'from_fieldname' => 'pid', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/PHPFox3.php
r5427 r5428 39 39 'from_fieldname' => 'parent_id', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/PHPWind.php
r5426 r5428 39 39 'from_fieldname' => 'parentid', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/Phorum.php
r5426 r5428 39 39 'from_fieldname' => 'parent_id', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/SMF.php
r5427 r5428 39 39 'from_fieldname' => 'id_parent', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/SimplePress5.php
r5427 r5428 39 39 'from_fieldname' => 'parent', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/Vanilla.php
r5426 r5428 40 40 'from_fieldname' => 'ParentCategoryID', 41 41 'to_type' => 'forum', 42 'to_fieldname' => '_bbp_ forum_parent_id',42 'to_fieldname' => '_bbp_old_forum_parent_id', 43 43 'callback_method' => 'callback_forum_parent' 44 44 ); -
trunk/src/includes/admin/converters/XMB.php
r5427 r5428 39 39 'from_fieldname' => 'fup', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/XenForo.php
r5427 r5428 39 39 'from_fieldname' => 'parent_node_id', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/bbPress1.php
r5427 r5428 39 39 'from_fieldname' => 'forum_parent', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/e107v1.php
r5427 r5428 39 39 'from_fieldname' => 'forum_parent', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/phpBB.php
r5427 r5428 39 39 'from_fieldname' => 'parent_id', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/vBulletin.php
r5427 r5428 39 39 'from_fieldname' => 'parentid', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43 -
trunk/src/includes/admin/converters/vBulletin3.php
r5427 r5428 39 39 'from_fieldname' => 'parentid', 40 40 'to_type' => 'forum', 41 'to_fieldname' => '_bbp_ forum_parent_id'41 'to_fieldname' => '_bbp_old_forum_parent_id' 42 42 ); 43 43
Note: See TracChangeset
for help on using the changeset viewer.