Changeset 4119
- Timestamp:
- 07/25/2012 04:21:07 PM (14 years ago)
- Location:
- branches/2.1/bbp-admin/converters
- Files:
-
- 2 edited
-
phpBB.php (modified) (2 diffs)
-
vBulletin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.1/bbp-admin/converters/phpBB.php
r3966 r4119 2 2 3 3 /** 4 * Implementation of Xenforoconverter.4 * Implementation of phpBB converter. 5 5 */ 6 class Phpbbextends BBP_Converter_Base {6 class phpBB extends BBP_Converter_Base { 7 7 function __construct() { 8 8 parent::__construct(); … … 356 356 'to_type' => 'user', 357 357 'to_fieldname' => '_bbp_class', 358 'default' => ' Phpbb'358 'default' => 'phpBB' 359 359 ); 360 360 -
branches/2.1/bbp-admin/converters/vBulletin.php
r3966 r4119 2 2 3 3 /** 4 * Implementation of Vbulletin converter.4 * Implementation of vBulletin converter. 5 5 */ 6 class Vbulletin extends BBP_Converter_Base6 class vBulletin extends BBP_Converter_Base 7 7 { 8 8 function __construct() … … 268 268 $this->field_map[] = array( 269 269 'to_type' => 'user', 'to_fieldname' => '_bbp_class', 270 'default' => ' Vbulletin'270 'default' => 'vBulletin' 271 271 ); 272 272
Note: See TracChangeset
for help on using the changeset viewer.