Changeset 5526 for trunk/src/includes/admin/converters/Mingle.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Mingle.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' => 'forum_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 … … 113 113 /** Topic Section ******************************************************/ 114 114 115 // Topic id (Stored in postmeta)115 // Old topic id (Stored in postmeta) 116 116 $this->field_map[] = array( 117 117 'from_tablename' => 'forum_threads', 118 118 'from_fieldname' => 'id', 119 119 'to_type' => 'topic', 120 'to_fieldname' => '_bbp_ topic_id'120 'to_fieldname' => '_bbp_old_topic_id' 121 121 ); 122 122 … … 235 235 /** Reply Section ******************************************************/ 236 236 237 // Reply id (Stored in postmeta)237 // Old reply id (Stored in postmeta) 238 238 $this->field_map[] = array( 239 239 'from_tablename' => 'forum_posts', 240 240 'from_fieldname' => 'id', 241 241 'to_type' => 'reply', 242 'to_fieldname' => '_bbp_ post_id'242 'to_fieldname' => '_bbp_old_reply_id' 243 243 ); 244 244
Note: See TracChangeset
for help on using the changeset viewer.