mirror of
https://github.com/stylersnico/librenms.git
synced 2026-08-03 08:01:38 +02:00
fix temp discovery if no temps in database
git-svn-id: http://www.observium.org/svn/observer/trunk@818 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@@ -267,10 +267,11 @@ if ($device['os'] == "ios")
|
||||
## Delete removed sensors
|
||||
|
||||
$sql = "SELECT * FROM temperature AS T, devices AS D WHERE T.temp_host = D.device_id AND D.device_id = '".$device['device_id']."'";
|
||||
$query = mysql_query($sql);
|
||||
|
||||
while ($sensor = mysql_fetch_array($query))
|
||||
if ($query = mysql_query($sql))
|
||||
{
|
||||
while ($sensor = mysql_fetch_array($query))
|
||||
{
|
||||
unset($exists);
|
||||
$i = 0;
|
||||
while ($i < count($temp_exists) && !$exists)
|
||||
@@ -285,6 +286,7 @@ while ($sensor = mysql_fetch_array($query))
|
||||
echo("-");
|
||||
mysql_query("DELETE FROM temperature WHERE temp_id = '" . $sensor['temp_id'] . "'");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
unset($temp_exists); echo("\n");
|
||||
|
||||
Reference in New Issue
Block a user