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