Switch to passing arrays instead of query strings to functions. Fixes #6647 props filosofo and hakre.

git-svn-id: https://develop.svn.wordpress.org/trunk@12657 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood
2010-01-08 08:34:39 +00:00
parent 6422cc2d63
commit 2a93c55f43
10 changed files with 12 additions and 12 deletions

View File

@@ -983,7 +983,7 @@ function comments_popup_link( $zero = false, $one = false, $more = false, $css_c
if ( !empty( $css_class ) ) {
echo ' class="'.$css_class.'" ';
}
$title = the_title_attribute( 'echo=0' );
$title = the_title_attribute( array('echo' => 0 ) );
echo apply_filters( 'comments_popup_link_attributes', '' );