mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
8 lines
295 B
PHP
8 lines
295 B
PHP
![]() |
<?php
|
||
|
if(mysql_result(mysql_query("SELECT count(*) FROM temperature WHERE temp_host = '" . $device['device_id'] . "'"),0)) {
|
||
|
echo("<div class=graphhead>Temperatures</div>");
|
||
|
$graph_type = "device_temperatures"; include ("includes/print-device-graph.php");
|
||
|
echo("<br />");
|
||
|
}
|
||
|
?>
|