Changeset 5526 for trunk/src/includes/admin/converters/MyBB.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/MyBB.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' => 'forums', 31 31 'from_fieldname' => 'fid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 130 130 /** Topic Section *****************************************************/ 131 131 132 // Topic id (Stored in postmeta)132 // Old topic id (Stored in postmeta) 133 133 $this->field_map[] = array( 134 134 'from_tablename' => 'threads', 135 135 'from_fieldname' => 'tid', 136 136 'to_type' => 'topic', 137 'to_fieldname' => '_bbp_ topic_id'137 'to_fieldname' => '_bbp_old_topic_id' 138 138 ); 139 139 … … 287 287 /** Reply Section *****************************************************/ 288 288 289 // Reply id (Stored in postmeta)289 // Old reply id (Stored in postmeta) 290 290 $this->field_map[] = array( 291 291 'from_tablename' => 'posts', … … 293 293 'from_expression' => 'WHERE replyto != 0', 294 294 'to_type' => 'reply', 295 'to_fieldname' => '_bbp_ post_id'295 'to_fieldname' => '_bbp_old_reply_id' 296 296 ); 297 297
Note: See TracChangeset
for help on using the changeset viewer.