Skip to:
Content

bbPress.org

Changeset 4101


Ignore:
Timestamp:
07/21/2012 05:32:15 AM (12 years ago)
Author:
johnjamesjacoby
Message:

Converters:

  • Classes are case sensitive when being loaded by the main converter.
  • Fixes #1886.
  • Props netweb.
Location:
branches/plugin/bbp-admin/converters
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-admin/converters/phpBB.php

    r3966 r4101  
    22
    33/**
    4  * Implementation of Xenforo converter.
     4 * Implementation of phpBB converter.
    55 */
    6 class Phpbb extends BBP_Converter_Base {
     6class phpBB extends BBP_Converter_Base {
    77    function __construct() {
    88        parent::__construct();
     
    356356            'to_type'      => 'user',
    357357            'to_fieldname' => '_bbp_class',
    358             'default'      => 'Phpbb'
     358     'default'      => 'phpBB'
    359359        );
    360360               
  • branches/plugin/bbp-admin/converters/vBulletin.php

    r3966 r4101  
    22
    33/**
    4  * Implementation of Vbulletin converter.
     4 * Implementation of vBulletin converter.
    55 */
    6 class Vbulletin extends BBP_Converter_Base
     6class vBulletin extends BBP_Converter_Base
    77{
    88    function __construct()
     
    268268        $this->field_map[] = array(
    269269            'to_type' => 'user', 'to_fieldname' => '_bbp_class',
    270             'default' => 'Vbulletin'
     270     'default' => 'vBulletin'
    271271        );
    272272       
Note: See TracChangeset for help on using the changeset viewer.