Tidying up

This commit is contained in:
laf
2015-02-26 23:04:12 +00:00
parent 15cc00c27d
commit ba5eb4e51a
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -85,7 +85,7 @@ function discover_device($device, $options = NULL)
}
echo("\n");
// If we've specified a module, use that, else walk the modules array
if ($options['m'])
{
@@ -118,8 +118,8 @@ function discover_device($device, $options = NULL)
}
$device_end = utime(); $device_run = $device_end - $device_start; $device_time = substr($device_run, 0, 5);
dbUpdate(array('last_discovered' => 'NOW()', 'type' => $device['type'], 'last_discovered_timetaken' => $device_time), 'devices', '`device_id` = ?', array($device['device_id']));
dbUpdate(array('last_discovered' => array('NOW()'), 'type' => $device['type'], 'last_discovered_timetaken' => $device_time), 'devices', '`device_id` = ?', array($device['device_id']));
echo("Discovered in $device_time seconds\n");
+2 -2
View File
@@ -223,9 +223,9 @@ function poll_device($device, $options)
rrdtool_update($ping_rrd, "N:$ping_time");
}
$update_array['last_polled'] = 'NOW()';
$update_array['last_polled'] = array('NOW()');
$update_array['last_polled_timetaken'] = $device_time;
$update_array['last_ping'] = 'NOW()';
$update_array['last_ping'] = array('NOW()');
$update_array['last_ping_timetaken'] = $ping_time;
#echo("$device_end - $device_start; $device_time $device_run");