Skip to content

Commit a4e487c

Browse files
committed
Add missing space to fix validation. Props seth. fixes WordPress#1887
git-svn-id: https://develop.svn.wordpress.org/trunk@3118 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 1c2e933 commit a4e487c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wp-includes/comment-functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Com
307307
if (!empty($CSSclass)) {
308308
echo ' class="'.$CSSclass.'"';
309309
}
310-
echo 'title="' . __( sprintf('Comment on %s', $post->post_title) ) .'">';
310+
echo ' title="' . __( sprintf('Comment on %s', $post->post_title) ) .'">';
311311
comments_number($zero, $one, $more, $number);
312312
echo '</a>';
313313
}

0 commit comments

Comments
 (0)