Make WordPress Core

Ticket #43804: fix.patch

File fix.patch, 89 bytes (added by vasyltech, 7 years ago)

Straight forward fix for the "PHP Notice: Undefined offset: 0 in ../wp-includes/taxonomy.php on line 1903" error

Line 
11973c1973
2<       if ( count( $taxonomies ) > 1 ) {
3---
4>       if ( count( $taxonomies ) >= 1 ) {