Skip to:
Content

bbPress.org


Ignore:
Timestamp:
11/23/2013 01:00:51 PM (12 years ago)
Author:
netweb
Message:

Include support for custom topic tag slugs and descriptions during import. Props netweb. Fixes #2399

  • Support included for bbPress v1.x , Drupal, Example, PHPFox, vBulletin v3.x & v4.x
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/admin/converters/bbPress1.php

    r5170 r5176  
    325325        );
    326326
     327        // Term slug.
     328        $this->field_map[] = array(
     329            'from_tablename'  => 'terms',
     330            'from_fieldname'  => 'slug',
     331            'join_tablename'  => 'term_taxonomy',
     332            'join_type'       => 'INNER',
     333            'join_expression' => 'USING (term_id)',
     334            'to_type'         => 'tags',
     335            'to_fieldname'    => 'slug',
     336            'callback_method' => 'callback_slug'
     337        );
     338
    327339        /** Reply Section *****************************************************/
    328340
Note: See TracChangeset for help on using the changeset viewer.