Taxonomy: Make sure `wp_list_categories()` correctly outputs term name of `0`.

Props joyously, SergeyBiryukov.
Fixes #44872.
Built from https://develop.svn.wordpress.org/trunk@43605


git-svn-id: http://core.svn.wordpress.org/trunk@43434 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2018-09-02 22:09:24 +00:00
parent d372b53ad7
commit 70e66a0bdf
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ class Walker_Category extends Walker {
); );
// Don't generate an element if the category name is empty. // Don't generate an element if the category name is empty.
if ( ! $cat_name ) { if ( '' === $cat_name ) {
return; return;
} }

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.0-alpha-43604'; $wp_version = '5.0-alpha-43605';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.