Skip to content

Commit

Permalink
Stopping warning and possible errors in graphlib.php caused by bugs i…
Browse files Browse the repository at this point in the history
…n statsgraph.php

Ported from LDC (1.5) branch


Author: Andrew Walbran <andrew.walbran@catalyst.net.nz>
  • Loading branch information
martinlanghoff committed Feb 28, 2007
1 parent 9861a39 commit 757d66b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions course/report/stats/graph.php
Expand Up @@ -73,17 +73,17 @@
$graph->y_data['line3'][] = $stat->line3;
}
}
$graph->y_order = array('line1','line2');
if (!empty($param->line3)) {
$graph->y_order[] = 'line3';
}
$graph->y_order = array('line1');
$graph->y_format['line1'] = array('colour' => $c[1],'line' => 'line','legend' => $param->line1);
if (!empty($param->line2)) {
$graph->y_order[] = 'line2';
$graph->y_format['line2'] = array('colour' => $c[2],'line' => 'line','legend' => $param->line2);
}
if (!empty($param->line3)) {
$graph->y_order[] = 'line3';
$graph->y_format['line3'] = array('colour' => $c[3],'line' => 'line','legend' => $param->line3);
}
$graph->y_tick_labels = false;
} else {
$data = array();
$times = array();
Expand Down

0 comments on commit 757d66b

Please sign in to comment.