Changeset 5526 for trunk/src/includes/admin/converters/SMF.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/SMF.php
r5516 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' => 'boards', 31 31 'from_fieldname' => 'id_board', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 146 146 /** Topic Section ******************************************************/ 147 147 148 // Topic id (Stored in postmeta)148 // Old topic id (Stored in postmeta) 149 149 $this->field_map[] = array( 150 150 'from_tablename' => 'topics', 151 151 'from_fieldname' => 'id_topic', 152 152 'to_type' => 'topic', 153 'to_fieldname' => '_bbp_ topic_id'153 'to_fieldname' => '_bbp_old_topic_id' 154 154 ); 155 155 … … 324 324 /** Reply Section ******************************************************/ 325 325 326 // Reply id (Stored in postmeta)326 // Old reply id (Stored in postmeta) 327 327 $this->field_map[] = array( 328 328 'from_tablename' => 'messages', 329 329 'from_fieldname' => 'id_msg', 330 330 'to_type' => 'reply', 331 'to_fieldname' => '_bbp_ post_id'331 'to_fieldname' => '_bbp_old_reply_id' 332 332 ); 333 333
Note: See TracChangeset
for help on using the changeset viewer.