-
-
Notifications
You must be signed in to change notification settings - Fork 433
Closed
Labels
Milestone
Description
Consider this code:
case 'avgTime':
$value = db_fetch_cell_prepared('SELECT max_time
FROM poller
WHERE id = ?',
array($index));
break;
Should instead be:
case 'avgTime':
$value = db_fetch_cell_prepared('SELECT avg_time
FROM poller
WHERE id = ?',
array($index));
break;
Sorry if I was better at submitting code updates, I would do it :)