Changeset 5526 for trunk/src/includes/admin/converters/Drupal7.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Drupal7.php
r5519 r5526 26 26 /** Forum Section *****************************************************/ 27 27 28 // Forum id (Stored in postmeta)28 // Old forum id (Stored in postmeta) 29 29 $this->field_map[] = array( 30 30 'from_tablename' => 'taxonomy_term_data', 31 31 'from_fieldname' => 'tid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 118 118 /** Topic Section *****************************************************/ 119 119 120 // Topic id (Stored in postmeta)120 // Old topic id (Stored in postmeta) 121 121 $this->field_map[] = array( 122 122 'from_tablename' => 'forum_index', 123 123 'from_fieldname' => 'nid', 124 124 'to_type' => 'topic', 125 'to_fieldname' => '_bbp_ topic_id'125 'to_fieldname' => '_bbp_old_topic_id' 126 126 ); 127 127 … … 318 318 /** Reply Section *****************************************************/ 319 319 320 // Reply id (Stored in postmeta)320 // Old reply id (Stored in postmeta) 321 321 $this->field_map[] = array( 322 322 'from_tablename' => 'comment', 323 323 'from_fieldname' => 'cid', 324 324 'to_type' => 'reply', 325 'to_fieldname' => '_bbp_ post_id'325 'to_fieldname' => '_bbp_old_reply_id' 326 326 ); 327 327
Note: See TracChangeset
for help on using the changeset viewer.