Changeset 5526 for trunk/src/includes/admin/converters/e107v1.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/e107v1.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', 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 … … 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' => 'forum_t', … … 154 154 'from_expression' => 'WHERE thread_parent = 0', 155 155 'to_type' => 'topic', 156 'to_fieldname' => '_bbp_ topic_id'156 'to_fieldname' => '_bbp_old_topic_id' 157 157 ); 158 158 … … 292 292 /** Reply Section *****************************************************/ 293 293 294 // Reply id (Stored in postmeta)294 // Old reply id (Stored in postmeta) 295 295 $this->field_map[] = array( 296 296 'from_tablename' => 'forum_t', … … 298 298 'from_expression' => 'WHERE thread_parent != 0', 299 299 'to_type' => 'reply', 300 'to_fieldname' => '_bbp_ post_id'300 'to_fieldname' => '_bbp_old_reply_id' 301 301 ); 302 302
Note: See TracChangeset
for help on using the changeset viewer.