Print title attributes for linkless toolbar items. see #19277.

git-svn-id: http://svn.automattic.com/wordpress/trunk@19499 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
koopersmith 2011-11-30 23:59:10 +00:00
parent 9dc5cf45a8
commit 7c6cd25f00
1 changed files with 5 additions and 1 deletions

View File

@ -269,7 +269,11 @@ class WP_Admin_Bar {
endif;
?>><?php
else:
?><div class="ab-item ab-empty-item" <?php echo $aria_attributes; ?>><?php
?><div class="ab-item ab-empty-item" <?php echo $aria_attributes;
if ( ! empty( $node->meta['title'] ) ) :
?> title="<?php echo esc_attr( $node->meta['title'] ); ?>"<?php
endif;
?>><?php
endif;
echo $node->title;