| 40 |
|
|
| 41 |
|
|
| 42 |
|
# Used to return whether or not a report data file is empty. |
| 43 |
< |
function isReportEmpty($filename) { |
| 44 |
< |
if (filesize($filename) < minFileSize) { |
| 43 |
> |
function isReportEmpty($filename, $minFileSize) { |
| 44 |
> |
if (filesize($filename) < $minFileSize) { |
| 45 |
|
return TRUE; |
| 46 |
|
} |
| 47 |
|
return FALSE; |
| 147 |
|
include("$day/$machine_name/$report/$reportLimitsFile"); |
| 148 |
|
|
| 149 |
|
$url = escapeshellcmd("$day/$machine_name/$report/$reportChartFile"); |
| 150 |
< |
if (isReportEmpty("$day/$machine_name/$report/$reportChartDataFile")) { |
| 150 |
> |
if (isReportEmpty("$day/$machine_name/$report/$reportChartDataFile", $minFileSize)) { |
| 151 |
|
echo "Host <b>$machine_name</b> did not send any information about <b>$report</b> on <b>$day</b>. Please select another report."; |
| 152 |
|
} |
| 153 |
|
else if (file_exists($url)) { ?> |