Changeset 5526 for trunk/src/includes/admin/converters/XMB.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/XMB.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 … … 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' => 'threads', 153 153 'from_fieldname' => 'tid', 154 154 'to_type' => 'topic', 155 'to_fieldname' => '_bbp_ topic_id'155 'to_fieldname' => '_bbp_old_topic_id' 156 156 ); 157 157 … … 326 326 /** Reply Section *****************************************************/ 327 327 328 // Reply id (Stored in postmeta)328 // Old reply id (Stored in postmeta) 329 329 $this->field_map[] = array( 330 330 'from_tablename' => 'posts', 331 331 'from_fieldname' => 'pid', 332 332 'to_type' => 'reply', 333 'to_fieldname' => '_bbp_ post_id'333 'to_fieldname' => '_bbp_old_reply_id' 334 334 ); 335 335
Note: See TracChangeset
for help on using the changeset viewer.