#3207 closed defect (fixed)
e107v1 converter accesses private member of BBP_Converter_Base
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 2.6 | Priority: | normal |
Severity: | normal | Version: | trunk |
Component: | API - Importers | Keywords: | |
Cc: |
Description
$map_userid is a private member of BBP_Converter_Base. e107v1 uses it with $this->map_userid in:
<?php protected function callback_e107v1_userid( $field ) { // Strip only the user id from the topic and reply authors $field = preg_replace( '/(\d+?)+\.[\S\s]+/', '$1', $field ); if ( ! isset( $this->map_userid[ $field ] ) ) { if ( ! empty( $this->sync_table ) ) { $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_user_id', $field ) ); } else { $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT user_id AS value_id FROM {$this->wpdb->usermeta} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_user_id', $field ) ); } if ( ! is_null( $row ) ) { $this->map_userid[ $field ] = $row->value_id; } else { if ( true === $this->convert_users ) { $this->map_userid[ $field ] = 0; } else { $this->map_userid[ $field ] = $field; } } } return $this->map_userid[ $field ]; }
$map_userid should be protected or there should be a getter method in BBP_Converter_Base.
Change History (4)
Note: See
TracTickets for help on using
tickets.
In 6832: