Browse Source

changing color when student is missing in attendance for more than 25% -refs #6751

Yoselyn Castillo 11 years ago
parent
commit
f0edbea3f0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/inc/lib/attendance.lib.php

+ 1 - 1
main/inc/lib/attendance.lib.php

@@ -710,7 +710,7 @@ class Attendance
 		$color_bar = '';
 
 		if ($faults_porcent > 25  ) {
-			$color_bar = '#F11';
+			$color_bar = '#f28989';
 		} else if ($faults_porcent > 10) {
 			$color_bar = '#F90';
 		}