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