Skip to:
Content

bbPress.org


Ignore:
Timestamp:
09/19/2014 11:34:18 AM (10 years ago)
Author:
netweb
Message:

Importer templates updates to coincide with r5525 changeset to differentiating original forum, topic and reply meta ID's from new bbPress post meta keys.

  • Renames _bbp_forum_id to _bbp_old_forum_id
  • Renames _bbp_topic_id to _bbp_old_topic_id
  • Renames _bbp_post_id to _bbp_old_reply_id

See #2650

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/converters/PunBB.php

    r5516 r5526  
    2626        /** Forum Section *****************************************************/
    2727
    28         // Forum id (Stored in postmeta)
     28        // Old forum id (Stored in postmeta)
    2929        $this->field_map[] = array(
    3030            'from_tablename' => 'forums',
    3131            'from_fieldname' => 'id',
    3232            'to_type'        => 'forum',
    33             'to_fieldname'   => '_bbp_forum_id'
     33            'to_fieldname'   => '_bbp_old_forum_id'
    3434        );
    3535
     
    138138        /** Topic Section *****************************************************/
    139139
    140         // Topic id (Stored in postmeta)
     140        // Old topic id (Stored in postmeta)
    141141        $this->field_map[] = array(
    142142            'from_tablename' => 'topics',
    143143            'from_fieldname' => 'id',
    144144            'to_type'        => 'topic',
    145             'to_fieldname'   => '_bbp_topic_id'
     145            'to_fieldname'   => '_bbp_old_topic_id'
    146146        );
    147147
     
    299299        /** Reply Section *****************************************************/
    300300
    301         // Reply id (Stored in postmeta)
     301        // Old reply id (Stored in postmeta)
    302302        $this->field_map[] = array(
    303303            'from_tablename'  => 'posts',
    304304            'from_fieldname'  => 'id',
    305305            'to_type'         => 'reply',
    306             'to_fieldname'    => '_bbp_post_id'
     306            'to_fieldname'    => '_bbp_old_reply_id'
    307307        );
    308308
Note: See TracChangeset for help on using the changeset viewer.