MDL-46226 core: pix_icon no longer sets title to the alt text

This commit is contained in:
Brian Barnes
2014-07-11 08:41:11 +12:00
parent 5fd0df97c5
commit 40ebfaeefd
+2 -3
View File
@@ -510,9 +510,8 @@ class pix_icon implements renderable {
if (empty($this->attributes['class'])) {
$this->attributes['class'] = 'smallicon';
}
if (!isset($this->attributes['title'])) {
$this->attributes['title'] = $this->attributes['alt'];
} else if (empty($this->attributes['title'])) {
if (empty($this->attributes['title'])) {
// Remove the title attribute if empty, we probably want to use the parent node's title
// and some browsers might overwrite it with an empty title.
unset($this->attributes['title']);