Changeset 5519 for trunk/src/includes/admin/converters/Drupal7.php
- Timestamp:
- 09/19/2014 12:58:42 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/admin/converters/Drupal7.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Drupal7.php
r5516 r5519 327 327 328 328 // Reply parent forum id (If no parent, then 0. Stored in postmeta) 329 // Note: We join the 'forum' table because 'comment' table does not include parent forum id. 330 $this->field_map[] = array( 331 'from_tablename' => 'forum', 332 'from_fieldname' => 'tid', 333 'join_tablename' => 'comment', 334 'join_type' => 'INNER', 335 'join_expression' => 'ON forum.nid = comment.nid', 329 $this->field_map[] = array( 330 'from_tablename' => 'comment', 331 'from_fieldname' => 'nid', 336 332 'to_type' => 'reply', 337 333 'to_fieldname' => '_bbp_forum_id',
Note: See TracChangeset
for help on using the changeset viewer.