PluginProbe
Import Users & Customers with Meta | WP Ultimate CSV Importer Add-on / trunk
Import Users & Customers with Meta | WP Ultimate CSV Importer Add-on vtrunk
2.0 1.7.1 1.2.9 1.3 1.4 1.4.1 1.4.2 1.4.3 1.5 1.6 1.7 trunk 1.0 1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8
← All changes | importExtensions/BuddyImport.php +1 -1 1.5trunk View file →
@@ -34,9 +34,9 @@
34 34 function buddy_import_function($data_array, $importas,$uID) {
35 35
36 36 global $wpdb;
37 37 foreach($data_array as $data_key => $data_value) {
38 - $get_buddy_fields = $wpdb->get_results($wpdb->prepare("select type , name from {$wpdb->prefix}bp_xprofile_fields where id= $data_key" ), ARRAY_A);
38 + $get_buddy_fields = $wpdb->get_results($wpdb->prepare("select type , name from {$wpdb->prefix}bp_xprofile_fields where id= %d", absint($data_key) ), ARRAY_A);
39 39 foreach($get_buddy_fields as $buddy_fields){
40 40 $field_type = $buddy_fields['type'];
41 41 if($field_type == 'multiselect_custom_post_type')
42 42 {