Changeset 5526 for trunk/src/includes/admin/converters/XenForo.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/XenForo.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' => 'node', 31 31 'from_fieldname' => 'node_id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 171 171 /** Topic Section *****************************************************/ 172 172 173 // Topic id (Stored in postmeta)173 // Old topic id (Stored in postmeta) 174 174 $this->field_map[] = array( 175 175 'from_tablename' => 'thread', 176 176 'from_fieldname' => 'thread_id', 177 177 'to_type' => 'topic', 178 'to_fieldname' => '_bbp_ topic_id'178 'to_fieldname' => '_bbp_old_topic_id' 179 179 ); 180 180 … … 317 317 /** Reply Section *****************************************************/ 318 318 319 // Reply id (Stored in postmeta)319 // Old reply id (Stored in postmeta) 320 320 $this->field_map[] = array( 321 321 'from_tablename' => 'post', 322 322 'from_fieldname' => 'post_id', 323 323 'to_type' => 'reply', 324 'to_fieldname' => '_bbp_ post_id'324 'to_fieldname' => '_bbp_old_reply_id' 325 325 ); 326 326
Note: See TracChangeset
for help on using the changeset viewer.