Changeset 5526 for trunk/src/includes/admin/converters/vBulletin.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/vBulletin.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' => 'forum', 31 31 'from_fieldname' => 'forumid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 148 148 /** Topic Section *****************************************************/ 149 149 150 // Topic id (Stored in postmeta)150 // Old topic id (Stored in postmeta) 151 151 $this->field_map[] = array( 152 152 'from_tablename' => 'thread', 153 153 'from_fieldname' => 'threadid', 154 154 'to_type' => 'topic', 155 'to_fieldname' => '_bbp_ topic_id'155 'to_fieldname' => '_bbp_old_topic_id' 156 156 ); 157 157 … … 342 342 /** Reply Section *****************************************************/ 343 343 344 // Reply id (Stored in postmeta)344 // Old reply id (Stored in postmeta) 345 345 $this->field_map[] = array( 346 346 'from_tablename' => 'post', 347 347 'from_fieldname' => 'postid', 348 348 'to_type' => 'reply', 349 'to_fieldname' => '_bbp_ post_id'349 'to_fieldname' => '_bbp_old_reply_id' 350 350 ); 351 351
Note: See TracChangeset
for help on using the changeset viewer.