Changeset 44392
- Timestamp:
- 01/04/2019 08:29:41 PM (6 years ago)
- Location:
- branches/5.0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0
-
branches/5.0/src/wp-includes/class-wp-customize-manager.php
r43887 r44392 2285 2285 /** This filter is documented in wp-includes/class-wp-customize-setting.php */ 2286 2286 $late_validity = apply_filters( "customize_validate_{$setting->id}", new WP_Error(), $unsanitized_value, $setting ); 2287 if ( ! empty( $late_validity->errors ) ) {2287 if ( is_wp_error( $late_validity ) && ! empty( $late_validity->errors ) ) { 2288 2288 $validity = $late_validity; 2289 2289 }
Note: See TracChangeset
for help on using the changeset viewer.