Changeset 5526 for trunk/src/includes/admin/converters/Phorum.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Phorum.php
r5522 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' => 'forum_id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 132 132 /** Topic Section *****************************************************/ 133 133 134 // Topic id (Stored in postmeta)134 // Old topic id (Stored in postmeta) 135 135 $this->field_map[] = array( 136 136 'from_tablename' => 'messages', … … 138 138 'from_expression' => 'WHERE parent_id = 0', 139 139 'to_type' => 'topic', 140 'to_fieldname' => '_bbp_ topic_id'140 'to_fieldname' => '_bbp_old_topic_id' 141 141 ); 142 142 … … 274 274 /** Reply Section *****************************************************/ 275 275 276 // Reply id (Stored in postmeta)276 // Old reply id (Stored in postmeta) 277 277 $this->field_map[] = array( 278 278 'from_tablename' => 'messages', … … 280 280 'from_expression' => 'WHERE parent_id != 0', 281 281 'to_type' => 'reply', 282 'to_fieldname' => '_bbp_ post_id'282 'to_fieldname' => '_bbp_old_reply_id' 283 283 ); 284 284
Note: See TracChangeset
for help on using the changeset viewer.