We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c17566c commit ead2b4cCopy full SHA for ead2b4c
2 files changed
CHANGELOG.md
@@ -3,7 +3,11 @@
3
--- develop ---
4
5
* issue#122: Apply Cacti#3191 for XSS exposure (CVE-2020-7106)
6
+
7
* issue#128:The syslog alert email is not sent if the Reporting Method is set to threshold.
8
9
+* issue#132: Cacti log shows syslog error when setting the "Re-Alert Cycle" in Alert Rules settings
10
11
* issue#133: Saving Settings on the Syslog Tab are not retained in latest Cacti
12
13
--- 2.9 ---
syslog_alerts.php
@@ -391,7 +391,7 @@ function get_repeat_array() {
391
$repeat_end = ($alert_retention * 24 * 60 * $multiplier) / 5;
392
}
393
394
- if ($repeat_end) {
+ if (isset($repeat_end)) {
395
foreach ($repeatarray as $i => $value) {
396
if ($i > $repeat_end) {
397
unset($repeatarray[$i]);
0 commit comments