Skip to:
Content

bbPress.org


Ignore:
Timestamp:
09/13/2014 01:56:43 AM (11 years ago)
Author:
netweb
Message:

Include 'default' forum status and forum type meta keys in importers for databases that do not support these values.

  • Forum status: _bbp_status = open meta
  • Forum type: _bbp_forum_type = forum

Props netweb. See #2647

File:
1 edited

Legend:

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

    r5428 r5516  
    115115            'to_fieldname'    => '_bbp_forum_type',
    116116            'callback_method' => 'callback_forum_type'
     117        );
     118
     119        // Forum status (Set a default value 'open', Stored in postmeta)
     120        $this->field_map[] = array(
     121            'to_type'      => 'forum',
     122            'to_fieldname' => '_bbp_status',
     123            'default'      => 'open'
    117124        );
    118125
Note: See TracChangeset for help on using the changeset viewer.