Changeset 5530 for trunk/src/includes/admin/converters/phpBB.php
- Timestamp:
- 09/20/2014 06:06:08 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/phpBB.php
r5528 r5530 410 410 /** User Section ******************************************************/ 411 411 412 // Store old User id (Stored in usermeta)412 // Store old user id (Stored in usermeta) 413 413 // Don't import users with id 2, these are phpBB bot/crawler accounts 414 414 $this->field_map[] = array( … … 417 417 'from_expression' => 'WHERE user_type !=2', 418 418 'to_type' => 'user', 419 'to_fieldname' => '_bbp_ user_id'420 ); 421 422 // Store old User password (Stored in usermeta serialized with salt)419 'to_fieldname' => '_bbp_old_user_id' 420 ); 421 422 // Store old user password (Stored in usermeta serialized with salt) 423 423 $this->field_map[] = array( 424 424 'from_tablename' => 'users', … … 429 429 ); 430 430 431 // Store old User Salt (This is only used for the SELECT row info for the above password save)431 // Store old user salt (This is only used for the SELECT row info for the above password save) 432 432 $this->field_map[] = array( 433 433 'from_tablename' => 'users',
Note: See TracChangeset
for help on using the changeset viewer.