Changeset 5526 for trunk/src/includes/admin/converters/Invision.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Invision.php
r5516 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' => 'id', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 148 148 /** Topic Section *****************************************************/ 149 149 150 // Topic id (Stored in postmeta)150 // Old topic id (Stored in postmeta) 151 151 $this->field_map[] = array( 152 152 'from_tablename' => 'topics', 153 153 'from_fieldname' => 'tid', 154 154 'to_type' => 'topic', 155 'to_fieldname' => '_bbp_ topic_id'155 'to_fieldname' => '_bbp_old_topic_id' 156 156 ); 157 157 … … 289 289 /** Reply Section *****************************************************/ 290 290 291 // Reply id (Stored in postmeta)291 // Old reply id (Stored in postmeta) 292 292 $this->field_map[] = array( 293 293 'from_tablename' => 'posts', 294 294 'from_fieldname' => 'pid', 295 295 'to_type' => 'reply', 296 'to_fieldname' => '_bbp_ post_id'296 'to_fieldname' => '_bbp_old_reply_id' 297 297 ); 298 298
Note: See TracChangeset
for help on using the changeset viewer.