From d71913bcce728eea4265635bf3e325afdc42712c Mon Sep 17 00:00:00 2001 From: scribu Date: Tue, 19 Oct 2010 22:46:26 +0000 Subject: [PATCH] Make $id arg optional in the_terms(). Fixes #15160 git-svn-id: http://svn.automattic.com/wordpress/trunk@15855 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index f52ae45cf6..5e121842c7 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -913,7 +913,7 @@ function get_the_term_list( $id = 0, $taxonomy, $before = '', $sep = '', $after * @param string $after Optional. After list. * @return null|bool False on WordPress error. Returns null when displaying. */ -function the_terms( $id, $taxonomy, $before = '', $sep = ', ', $after = '' ) { +function the_terms( $id = 0, $taxonomy, $before = '', $sep = ', ', $after = '' ) { $term_list = get_the_term_list( $id, $taxonomy, $before, $sep, $after ); if ( is_wp_error( $term_list ) )