Changeset 5526 for trunk/src/includes/admin/converters/PHPFox3.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/PHPFox3.php
r5428 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' => 'forum_id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 150 150 /** Topic Section *****************************************************/ 151 151 152 // Topic id (Stored in postmeta)152 // Old topic id (Stored in postmeta) 153 153 $this->field_map[] = array( 154 154 'from_tablename' => 'forum_thread', 155 155 'from_fieldname' => 'thread_id', 156 156 'to_type' => 'topic', 157 'to_fieldname' => '_bbp_ topic_id'157 'to_fieldname' => '_bbp_old_topic_id' 158 158 ); 159 159 … … 327 327 /** Reply Section *****************************************************/ 328 328 329 // Reply id (Stored in postmeta)329 // Old reply id (Stored in postmeta) 330 330 $this->field_map[] = array( 331 331 'from_tablename' => 'forum_post', 332 332 'from_fieldname' => 'post_id', 333 333 'to_type' => 'reply', 334 'to_fieldname' => '_bbp_ post_id'334 'to_fieldname' => '_bbp_old_reply_id' 335 335 ); 336 336
Note: See TracChangeset
for help on using the changeset viewer.