From 02f5bbb790c277f2ab6cf299d181bfb5445d586c Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Wed, 8 Oct 2014 15:49:28 +0200 Subject: [PATCH] Minor - fixing doble weight. --- main/work/student_work.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/work/student_work.php b/main/work/student_work.php index 27e4fca68e..23d15b4bc3 100755 --- a/main/work/student_work.php +++ b/main/work/student_work.php @@ -162,7 +162,7 @@ foreach ($workPerUser as $work) { $column++; $score = '-'; if (!empty($scoreWeight)) { - $score = strip_tags($userResult['qualification'])."/".$scoreWeight; + $score = strip_tags($userResult['qualification']); } $table->setCellContents($row, $column, $score); $column++;