Changeset 5526 for trunk/src/includes/admin/converters/PHPWind.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/PHPWind.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' => 'bbs_forum', 31 31 'from_fieldname' => 'fid', 32 32 'to_type' => 'forum', 33 'to_fieldname' => '_bbp_ forum_id'33 'to_fieldname' => '_bbp_old_forum_id' 34 34 ); 35 35 … … 163 163 /** Topic Section *****************************************************/ 164 164 165 // Topic id (Stored in postmeta)165 // Old topic id (Stored in postmeta) 166 166 $this->field_map[] = array( 167 167 'from_tablename' => 'bbs_threads', 168 168 'from_fieldname' => 'tid', 169 169 'to_type' => 'topic', 170 'to_fieldname' => '_bbp_ topic_id'170 'to_fieldname' => '_bbp_old_topic_id' 171 171 ); 172 172 … … 308 308 /** Reply Section *****************************************************/ 309 309 310 // Reply id (Stored in postmeta)310 // Old reply id (Stored in postmeta) 311 311 $this->field_map[] = array( 312 312 'from_tablename' => 'bbs_posts', 313 313 'from_fieldname' => 'pid', 314 314 'to_type' => 'reply', 315 'to_fieldname' => '_bbp_ post_id'315 'to_fieldname' => '_bbp_old_reply_id' 316 316 ); 317 317
Note: See TracChangeset
for help on using the changeset viewer.