MDL-20498 User pictures should not have 'generic' alt text

This commit is contained in:
Sam Marshall 2009-11-30 16:55:03 +00:00
parent ff8c7b2ac8
commit 41ff27d0cc

View File

@ -1930,7 +1930,8 @@ class moodle_user_picture extends moodle_html_component {
if (!empty($this->user->imagealt)) {
$this->image->alt = $this->user->imagealt;
} else {
$this->image->alt = get_string('pictureof','',fullname($this->user));
// No alt text when there is nothing useful (accessibility)
$this->image->alt = HTML_ATTR_EMPTY;
}
}