Ticket #1886: CamelCase.diff
| File CamelCase.diff, 1.4 KB (added by , 14 years ago) |
|---|
-
bbp-admin/converters/phpBB.php
1 1 <?php 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(); 9 9 $this->setup_globals(); … … class Phpbb extends BBP_Converter_Base { 355 355 $this->field_map[] = array( 356 356 'to_type' => 'user', 357 357 'to_fieldname' => '_bbp_class', 358 'default' => ' Phpbb'358 'default' => 'phpBB' 359 359 ); 360 360 361 361 // User name. -
bbp-admin/converters/vBulletin.php
1 1 <?php 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() 9 9 { … … class Vbulletin extends BBP_Converter_Base 267 267 // User password verify class. Stores in usermeta for verifying password. 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 273 273 // User name.