skala
Julio Montoya 14 years ago
commit 7ea2b9e9e5
  1. 7
      documentation/changelog.html
  2. 3
      main/admin/course_edit.php

@ -50,9 +50,10 @@
<li>Profile: Deleting production user's files fixed see #1682</li>
<li>Installation: Tracking will be always enabled #2066</li>
<li>Thickbox does not work well in the Social Tool #1995</li>
<li>Fix chamilo social-content-right #2010</li>
<li>Fix screen when you try to access a protected course through the url #2026</li>
<li>Fix sessions and Wiki #1659</li>
<li>Fixed chamilo social-content-right #2010</li>
<li>Fixed screen when you try to access a protected course through the url #2026</li>
<li>Fixed sessions and Wiki #1659</li>
<li>Fixed bug deleting course teacher in admin edition #2109</li>
</ul>
<h3>Security</h3>
<ul>

@ -56,6 +56,7 @@ if ($_configuration['multiple_access_urls']) {
INNER JOIN $access_url_rel_user_table url_rel_user
ON (u.user_id=url_rel_user.user_id) WHERE url_rel_user.access_url_id=".api_get_current_access_url_id()." AND status=1".$order_clause;
} else {
$sql = "SELECT user_id,lastname,firstname FROM $table_user WHERE status='1'".$order_clause;
}
@ -74,7 +75,7 @@ while ($obj = Database::fetch_object($res)) {
$course['tutor_name']=$obj->user_id;
}
//We add in the array platform teachers
$platform_teachers[$obj->user_id] = $obj->firstname.' '.$obj->lastname;
$platform_teachers[$obj->user_id] = api_get_person_name($obj->firstname, $obj->lastname);
}
//Case where there is no teacher in the course

Loading…
Cancel
Save