mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fix voltages discovery if no voltages in database
git-svn-id: http://www.observium.org/svn/observer/trunk@817 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -95,8 +95,9 @@ if ($device['os'] == "linux")
|
||||
## Delete removed sensors
|
||||
|
||||
$sql = "SELECT * FROM voltage AS V, devices AS D WHERE V.volt_host = D.device_id AND D.device_id = '".$device['device_id']."'";
|
||||
$query = mysql_query($sql);
|
||||
|
||||
if ($query = mysql_query($sql))
|
||||
{
|
||||
while ($sensor = mysql_fetch_array($query))
|
||||
{
|
||||
unset($exists);
|
||||
@@ -114,6 +115,7 @@ while ($sensor = mysql_fetch_array($query))
|
||||
mysql_query("DELETE FROM voltage WHERE volt_id = '" . $sensor['volt_id'] . "'");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
unset($volt_exists); echo("\n");
|
||||
|
||||
|
Reference in New Issue
Block a user