Skip to content
Snippets Groups Projects
Commit 0455e584 authored by Andrew Rudenets's avatar Andrew Rudenets
Browse files

Исправление досадного бага в выводе предметов у студентов

parent 78910b97
Branches
Tags
No related merge requests found
......@@ -18,7 +18,7 @@ class Controller_Student_Index extends Controller_UserEnvi {
$disciplinesHandled[$i]['Control'] = 'Зачет';
$disciplinesHandled[$i]['Teacher'] = $row['TeacherLast'].' '.UTF8::substr($row['TeacherFirst'], 0, 1).'. ';
if(!empty($row['TeacherSecond']))
$disciplinesHandled[$i]['Teacher'] = UTF8::substr($row['TeacherFirst'], 0, 1).'.';
$disciplinesHandled[$i]['Teacher'] .= UTF8::substr($row['TeacherSecond'], 0, 1).'.';
$disciplinesHandled[$i]['ID'] = $row['SubjectID'];
$disciplinesHandled[$i]['Title'] = $row['SubjectName'];
$disciplinesHandled[$i]['Rate'] = $row['Rate'];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment