Changeset 5530 for trunk/src/includes/admin/converters/Kunena1.php
- Timestamp:
- 09/20/2014 06:06:08 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/Kunena1.php
r5526 r5530 376 376 //Note: We are importing the Joomla User details and the Kunena v1.x user profile details. 377 377 378 // Store old User id (Stored in usermeta)378 // Store old user id (Stored in usermeta) 379 379 $this->field_map[] = array( 380 380 'from_tablename' => 'users', 381 381 'from_fieldname' => 'id', 382 382 'to_type' => 'user', 383 'to_fieldname' => '_bbp_ user_id'384 ); 385 386 // Store old User password (Stored in usermeta serialized with salt)383 'to_fieldname' => '_bbp_old_user_id' 384 ); 385 386 // Store old user password (Stored in usermeta serialized with salt) 387 387 $this->field_map[] = array( 388 388 'from_tablename' => 'users', … … 393 393 ); 394 394 395 // Store old User Salt (This is only used for the SELECT row info for the above password save)395 // Store old user salt (This is only used for the SELECT row info for the above password save) 396 396 // $this->field_map[] = array( 397 397 // 'from_tablename' => 'user',
Note: See TracChangeset
for help on using the changeset viewer.