From 20e289ce350d49777e63ee454517ba6987fd16e4 Mon Sep 17 00:00:00 2001 From: andryyy Date: Sun, 24 May 2020 19:32:46 +0200 Subject: [PATCH] [Web] Fix stupid mistake, thanks to @ntimo! --- data/web/inc/functions.pushover.inc.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/web/inc/functions.pushover.inc.php b/data/web/inc/functions.pushover.inc.php index fddd99eb..04e0f344 100644 --- a/data/web/inc/functions.pushover.inc.php +++ b/data/web/inc/functions.pushover.inc.php @@ -36,7 +36,7 @@ function pushover($_action, $_data = null) { )); $_SESSION['return'][] = array( 'type' => 'success', - 'log' => array(__FUNCTION__, $_action, $_data, $_data), + 'log' => array(__FUNCTION__, $_action, $_data), 'msg' => 'pushover_settings_edited' ); continue; @@ -56,7 +56,7 @@ function pushover($_action, $_data = null) { else { $_SESSION['return'][] = array( 'type' => 'danger', - 'log' => array(__FUNCTION__, $_action, $_type, $_data_log, $_attr), + 'log' => array(__FUNCTION__, $_action, $_data), 'msg' => 'access_denied' ); continue; @@ -64,7 +64,7 @@ function pushover($_action, $_data = null) { if (!empty($senders_regex) && !is_valid_regex($senders_regex)) { $_SESSION['return'][] = array( 'type' => 'danger', - 'log' => array(__FUNCTION__, $_action, $_type, $_data_log, $_attr), + 'log' => array(__FUNCTION__, $_action, $_data), 'msg' => 'Invalid regex' ); continue; @@ -120,7 +120,7 @@ function pushover($_action, $_data = null) { )); $_SESSION['return'][] = array( 'type' => 'success', - 'log' => array(__FUNCTION__, $_action, $_data, $_data), + 'log' => array(__FUNCTION__, $_action, $_data), 'msg' => 'pushover_settings_edited' ); }