Changeset 5526 for trunk/src/includes/admin/converters/Example.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Example.php
r5520 r5526 28 28 // Setup table joins for the forum section at the base of this section 29 29 30 // Forum id (Stored in postmeta)30 // Old forum id (Stored in postmeta) 31 31 $this->field_map[] = array( 32 32 'from_tablename' => 'forums_table', 33 33 'from_fieldname' => 'the_forum_id', 34 34 'to_type' => 'forum', 35 'to_fieldname' => '_bbp_ forum_id'35 'to_fieldname' => '_bbp_old_forum_id' 36 36 ); 37 37 … … 165 165 // Setup table joins for the topic section at the base of this section 166 166 167 // Topic id (Stored in postmeta)167 // Old topic id (Stored in postmeta) 168 168 $this->field_map[] = array( 169 169 'from_tablename' => 'topics_table', 170 170 'from_fieldname' => 'the_topic_id', 171 171 'to_type' => 'topic', 172 'to_fieldname' => '_bbp_ topic_id'172 'to_fieldname' => '_bbp_old_topic_id' 173 173 ); 174 174 … … 378 378 // Setup table joins for the reply section at the base of this section 379 379 380 // Reply id (Stored in postmeta)380 // Old reply id (Stored in postmeta) 381 381 $this->field_map[] = array( 382 382 'from_tablename' => 'replies_table', 383 383 'from_fieldname' => 'the_reply_id', 384 384 'to_type' => 'reply', 385 'to_fieldname' => '_bbp_ post_id'385 'to_fieldname' => '_bbp_old_reply_id' 386 386 ); 387 387
Note: See TracChangeset
for help on using the changeset viewer.