Skip to:
Content

bbPress.org


Ignore:
Timestamp:
09/20/2014 06:06:08 AM (12 years ago)
Author:
netweb
Message:

Converter import user meta data improvements and fixes:

  • Original 'old' user meta key is now defined using _bbp_old_user_id
  • Fixes the "Purge Previous Import" optional removal of previously imported users when using the database sync_table.
  • Updates all included importers with the above changes including the custom callback in e107v1.php

See #2650

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/converters/FluxBB.php

    r5526 r5530  
    393393                /** User Section ******************************************************/
    394394
    395                 // Store old User id (Stored in usermeta)
     395                // Store old user id (Stored in usermeta)
    396396                $this->field_map[] = array(
    397397                        'from_tablename' => 'users',
    398398                        'from_fieldname' => 'id',
    399399                        '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)
    404404                $this->field_map[] = array(
    405405                        'from_tablename'  => 'users',
     
    410410                );
    411411
    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)
    413413//              $this->field_map[] = array(
    414414//                      'from_tablename' => 'users',
Note: See TracChangeset for help on using the changeset viewer.