Changeset 5526 for trunk/src/includes/admin/converters/PunBB.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/PunBB.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 … … 138 138 /** Topic Section *****************************************************/ 139 139 140 // Topic id (Stored in postmeta)140 // Old topic id (Stored in postmeta) 141 141 $this->field_map[] = array( 142 142 'from_tablename' => 'topics', 143 143 'from_fieldname' => 'id', 144 144 'to_type' => 'topic', 145 'to_fieldname' => '_bbp_ topic_id'145 'to_fieldname' => '_bbp_old_topic_id' 146 146 ); 147 147 … … 299 299 /** Reply Section *****************************************************/ 300 300 301 // Reply id (Stored in postmeta)301 // Old reply id (Stored in postmeta) 302 302 $this->field_map[] = array( 303 303 'from_tablename' => 'posts', 304 304 'from_fieldname' => 'id', 305 305 'to_type' => 'reply', 306 'to_fieldname' => '_bbp_ post_id'306 'to_fieldname' => '_bbp_old_reply_id' 307 307 ); 308 308
Note: See TracChangeset
for help on using the changeset viewer.