echo OR return, not both, in single_term_title(). props Viper007Bond, fixes #15939.

git-svn-id: https://develop.svn.wordpress.org/trunk@17107 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-12-22 00:04:53 +00:00
parent 71b6aeb04d
commit 676394918c
1 changed files with 2 additions and 2 deletions

View File

@ -755,8 +755,8 @@ function single_term_title( $prefix = '', $display = true ) {
if ( $display )
echo $prefix . $term_name;
return $term_name;
else
return $term_name;
}
/**