Changeset 5530 for trunk/src/includes/admin/converters/Example.php
- Timestamp:
- 09/20/2014 06:06:08 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Example.php
r5526 r5530 496 496 // Setup table joins for the user section at the base of this section 497 497 498 // Store old User id (Stored in usermeta)498 // Store old user id (Stored in usermeta) 499 499 $this->field_map[] = array( 500 500 'from_tablename' => 'users_table', 501 501 'from_fieldname' => 'the_users_id', 502 502 'to_type' => 'user', 503 'to_fieldname' => '_bbp_ user_id'504 ); 505 506 // Store old User password (Stored in usermeta serialized with salt)503 'to_fieldname' => '_bbp_old_user_id' 504 ); 505 506 // Store old user password (Stored in usermeta serialized with salt) 507 507 $this->field_map[] = array( 508 508 'from_tablename' => 'users_table', … … 513 513 ); 514 514 515 // Store old User Salt (This is only used for the SELECT row info for the above password save)515 // Store old user salt (This is only used for the SELECT row info for the above password save) 516 516 $this->field_map[] = array( 517 517 'from_tablename' => 'users_table',
Note: See TracChangeset
for help on using the changeset viewer.