PluginProbe
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP / 1.2.74
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP v1.2.74
1.2.74 1.2.73 1.2.72 1.2.71 1.2.70 1.2.69 1.2.68 1.2.67 1.2.66 1.2.65 1.2.64 1.2.63 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 All 174 releases
← All changes | includes/class-profile.php +3 -1 1.2.641.2.74 View file →
@@ -396,9 +396,11 @@
396 396 $array_value = array();
397 397 foreach ( $value as $v ) {
398 398 if ( ! empty( $v ) ) {
399 399 $data = $this->uwp_array_search( $option_values_arr, 'value', $v );
400 - $array_value[] = $data[0]['label'];
400 + if ( ! empty( $data ) && isset( $data[0]['label'] ) ) {
401 + $array_value[] = $data[0]['label'];
402 + }
401 403 }
402 404
403 405 }
404 406 if ( ! empty( $array_value ) ) {