Skip to:
Content

bbPress.org


Ignore:
Timestamp:
09/13/2014 01:56:43 AM (12 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/Drupal7.php

    r5428 r5516  
    8080                );
    8181
     82                // Forum type (Set a default value 'forum', Stored in postmeta)
     83                $this->field_map[] = array(
     84                        'to_type'      => 'forum',
     85                        'to_fieldname' => '_bbp_forum_type',
     86                        'default'      => 'forum'
     87                );
     88
     89                // Forum status (Set a default value 'open', Stored in postmeta)
     90                $this->field_map[] = array(
     91                        'to_type'      => 'forum',
     92                        'to_fieldname' => '_bbp_status',
     93                        'default'      => 'open'
     94                );
     95
    8296                // Forum dates.
    8397                $this->field_map[] = array(
Note: See TracChangeset for help on using the changeset viewer.