Add alternative display for teacher profile picture

When displaying teacher profile picture on course information, an
alternative display (for
accessibility) was missing. The alternative text "[TEACHE NAME]
Profile" is set.
remotes/angel/1.11.x
Polycapa 8 years ago committed by Satyan JACQUENS
parent 66b973f48e
commit 5b25f936fb
  1. 4
      main/auth/courses_categories.php

@ -331,10 +331,10 @@ function return_teacher($course)
$name = $value['firstname'].' ' . $value['lastname'];
if ($length > 2) {
$html .= '<a href="'.$value['url'].'" class="ajax" data-title="'.$name.'">
<img src="'.$value['avatar'].'"/></a>';
<img src="'.$value['avatar'].'" alt="'.$name.' ' .get_lang('Profile').'"/></a>';
} else {
$html .= '<a href="'.$value['url'].'" class="ajax" data-title="'.$name.'">
<img src="'.$value['avatar'].'"/></a>';
<img src="'.$value['avatar'].'" alt="'.$name.' ' .get_lang('Profile').'"/></a>';
$html .= '<div class="teachers-details"><h5>
<a href="'.$value['url'].'" class="ajax" data-title="'.$name.'">'
. $name . '</a></h5><p>'. get_lang('Teacher').'</p></div>';

Loading…
Cancel
Save