[svn r14268] if all the weightings of a lp are 0, then display a score of '-' more than a score of '0%'

skala
Eric Marguin 18 years ago
parent 73b97df0a2
commit a21a47c847
  1. 2
      main/mySpace/myStudents.php

@ -597,7 +597,7 @@ if(!empty($_GET['student']))
<?php echo api_time_to_hms($total_time) ?>
</td>
<td align="right">
<?php echo $score.'%' ?>
<?php echo $total_weighting>0 ? $score.'%' : '-' ?>
</td>
<td align="right">
<?php echo $progress ?>

Loading…
Cancel
Save