Changeset 5530 for trunk/src/includes/admin/converters/FluxBB.php
- Timestamp:
- 09/20/2014 06:06:08 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/FluxBB.php
r5526 r5530 393 393 /** User Section ******************************************************/ 394 394 395 // Store old User id (Stored in usermeta)395 // Store old user id (Stored in usermeta) 396 396 $this->field_map[] = array( 397 397 'from_tablename' => 'users', 398 398 'from_fieldname' => 'id', 399 399 'to_type' => 'user', 400 'to_fieldname' => '_bbp_ user_id'401 ); 402 403 // Store old User password (Stored in usermeta serialized with salt)400 'to_fieldname' => '_bbp_old_user_id' 401 ); 402 403 // Store old user password (Stored in usermeta serialized with salt) 404 404 $this->field_map[] = array( 405 405 'from_tablename' => 'users', … … 410 410 ); 411 411 412 // Store old User Salt (This is only used for the SELECT row info for the above password save)412 // Store old user salt (This is only used for the SELECT row info for the above password save) 413 413 // $this->field_map[] = array( 414 414 // 'from_tablename' => 'users',
Note: See TracChangeset
for help on using the changeset viewer.