Changeset 5526 for trunk/src/includes/admin/converters/Vanilla.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Vanilla.php
r5523 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' => 'Category', … … 32 32 'from_expression' => 'WHERE Category.CategoryID > 0', 33 33 'to_type' => 'forum', 34 'to_fieldname' => '_bbp_ forum_id'34 'to_fieldname' => '_bbp_old_forum_id' 35 35 ); 36 36 … … 152 152 /** Topic Section *****************************************************/ 153 153 154 // Topic id (Stored in postmeta)154 // Old topic id (Stored in postmeta) 155 155 $this->field_map[] = array( 156 156 'from_tablename' => 'Discussion', 157 157 'from_fieldname' => 'DiscussionID', 158 158 'to_type' => 'topic', 159 'to_fieldname' => '_bbp_ topic_id'159 'to_fieldname' => '_bbp_old_topic_id' 160 160 ); 161 161 … … 321 321 /** Reply Section *****************************************************/ 322 322 323 // Reply id (Stored in postmeta)323 // Old reply id (Stored in postmeta) 324 324 $this->field_map[] = array( 325 325 'from_tablename' => 'Comment', 326 326 'from_fieldname' => 'CommentID', 327 327 'to_type' => 'reply', 328 'to_fieldname' => '_bbp_ post_id'328 'to_fieldname' => '_bbp_old_reply_id' 329 329 ); 330 330
Note: See TracChangeset
for help on using the changeset viewer.