diff options
author | jim-p <jimp@pfsense.org> | 2013-10-29 08:52:08 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2013-10-29 09:05:27 -0400 |
commit | 25147efff43f4aa9971e3026a06afe12898d1984 (patch) | |
tree | 434943068515db3f6b08c9ef68cda48258db90d4 /config/mailreport | |
parent | 03ccade9e371e64b4911e1f8dd9a9e0234d8f0cd (diff) | |
download | pfsense-packages-25147efff43f4aa9971e3026a06afe12898d1984.tar.gz pfsense-packages-25147efff43f4aa9971e3026a06afe12898d1984.tar.bz2 pfsense-packages-25147efff43f4aa9971e3026a06afe12898d1984.zip |
Mail Reports: Ensure some variables are actually arrays before using them, avoids an error and some console output if certain portions of a report have never been used. Version bump.
Diffstat (limited to 'config/mailreport')
-rw-r--r-- | config/mailreport/mail_reports_generate.php | 18 | ||||
-rw-r--r-- | config/mailreport/mailreport.xml | 2 |
2 files changed, 16 insertions, 4 deletions
diff --git a/config/mailreport/mail_reports_generate.php b/config/mailreport/mail_reports_generate.php index a784c596..c31909c9 100644 --- a/config/mailreport/mail_reports_generate.php +++ b/config/mailreport/mail_reports_generate.php @@ -53,9 +53,21 @@ if (!$config['mailreports']['schedule'][$id]) exit; $thisreport = $config['mailreports']['schedule'][$id]; -$cmds = $thisreport['cmd']['row']; -$logs = $thisreport['log']['row']; -$graphs = $thisreport['row']; + +if (is_array($thisreport['cmd']) && is_array($thisreport['cmd']['row'])) + $cmds = $thisreport['cmd']['row']; +else + $cmds = array(); + +if (is_array($thisreport['log']) && is_array($thisreport['log']['row'])) + $logs = $thisreport['log']['row']; +else + $logs = array(); + +if (is_array($thisreport['row'])) + $graphs = $thisreport['row']; +else + $graphs = array(); // If there is nothing to do, bail! if ((!is_array($cmds) || !(count($cmds) > 0)) diff --git a/config/mailreport/mailreport.xml b/config/mailreport/mailreport.xml index 000fc675..5a759984 100644 --- a/config/mailreport/mailreport.xml +++ b/config/mailreport/mailreport.xml @@ -37,7 +37,7 @@ ]]> </copyright> <name>mailreport</name> - <version>2.0.5</version> + <version>2.0.6</version> <title>Status: Mail Reports</title> <additional_files_needed> <prefix>/usr/local/bin/</prefix> |