浏览代码

[Web] Fix stupid mistake, thanks to @ntimo!

andryyy 5 年之前
父节点
当前提交
20e289ce35
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      data/web/inc/functions.pushover.inc.php

+ 4 - 4
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'
         );
       }