Changeset 42369
- Timestamp:
- 12/04/2017 09:54:15 PM (8 years ago)
- Location:
- branches/4.9
- Files:
-
- 2 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
- Property svn:mergeinfo changed
/trunk merged: 42364-42365
- Property svn:mergeinfo changed
-
branches/4.9/src/wp-includes/category-template.php
r41767 r42369 21 21 $category = (int) $category; 22 22 23 $category = get_term_link( $category , 'category');23 $category = get_term_link( $category ); 24 24 25 25 if ( is_wp_error( $category ) ) -
branches/4.9/tests/phpunit/tests/category/getCategoryLink.php
r42364 r42369 18 18 * @ticket 42771 19 19 */ 20 public function test_should_return_link_for_term_from_another_ category_on_primed_cache() {20 public function test_should_return_link_for_term_from_another_taxonomy_on_primed_cache() { 21 21 register_taxonomy( 'wptests_tax', 'post' ); 22 22 … … 37 37 * @ticket 42771 38 38 */ 39 public function test_should_return_link_for_term_from_another_ category_on_empty_cache() {39 public function test_should_return_link_for_term_from_another_taxonomy_on_empty_cache() { 40 40 register_taxonomy( 'wptests_tax', 'post' ); 41 41
Note: See TracChangeset
for help on using the changeset viewer.