Changeset 10179 for sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-themes-api.php
- Timestamp:
- 08/19/2020 03:00:42 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-themes-api.php
r10177 r10179 928 928 } 929 929 930 return array_unique( $input ); 930 // Only unique if it's a non-associative array. 931 if ( wp_is_numeric_array( $input ) ) { 932 $input = array_unique( $input ); 933 } 934 935 return $input; 931 936 } 932 937 }
Note: See TracChangeset
for help on using the changeset viewer.