Skip to:
Content

bbPress.org


Ignore:
Timestamp:
09/20/2014 06:06:08 AM (10 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/Kunena2.php

    r5526 r5530  
    395395        //Note: We are importing the Joomla User details and the Kunena v2.x user profile details.
    396396
    397         // Store old User id (Stored in usermeta)
     397        // Store old user id (Stored in usermeta)
    398398        $this->field_map[] = array(
    399399            'from_tablename' => 'users',
    400400            'from_fieldname' => 'id',
    401401            '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)
    406406        $this->field_map[] = array(
    407407            'from_tablename'  => 'users',
     
    412412        );
    413413
    414         // Store old User Salt. This is only used for the SELECT row info for the above password save
     414        // Store old user salt. This is only used for the SELECT row info for the above password save
    415415        /*
    416416        $this->field_map[] = array(
Note: See TracChangeset for help on using the changeset viewer.