Changeset 5526 for trunk/src/includes/admin/converters/Kunena2.php
- Timestamp:
- 09/19/2014 11:34:18 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Kunena2.php
r5428 r5526 27 27 28 28 29 // Forum id (Stored in postmeta)29 // Old forum id (Stored in postmeta) 30 30 $this->field_map[] = array( 31 31 'from_tablename' => 'kunena_categories', 32 32 'from_fieldname' => 'id', 33 33 'to_type' => 'forum', 34 'to_fieldname' => '_bbp_ forum_id'34 'to_fieldname' => '_bbp_old_forum_id' 35 35 ); 36 36 … … 151 151 /** Topic Section *****************************************************/ 152 152 153 // Topic id (Stored in postmeta)153 // Old topic id (Stored in postmeta) 154 154 $this->field_map[] = array( 155 155 'from_tablename' => 'kunena_topics', 156 156 'from_fieldname' => 'id', 157 157 'to_type' => 'topic', 158 'to_fieldname' => '_bbp_ topic_id'158 'to_fieldname' => '_bbp_old_topic_id' 159 159 ); 160 160 … … 296 296 /** Reply Section *****************************************************/ 297 297 298 // Reply id (Stored in postmeta)298 // Old reply id (Stored in postmeta) 299 299 $this->field_map[] = array( 300 300 'from_tablename' => 'kunena_messages', 301 301 'from_fieldname' => 'id', 302 302 'to_type' => 'reply', 303 'to_fieldname' => '_bbp_ post_id'303 'to_fieldname' => '_bbp_old_reply_id' 304 304 ); 305 305
Note: See TracChangeset
for help on using the changeset viewer.