From d00f4744faea89b0e872c30226c48f2b2f11d6ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9?= Date: Wed, 3 Oct 2018 17:46:56 +0200 Subject: [PATCH] [Web] Fix address rewriting actions, fixes #1829 --- .../inc/functions.address_rewriting.inc.php | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/data/web/inc/functions.address_rewriting.inc.php b/data/web/inc/functions.address_rewriting.inc.php index 037166fa..994429f2 100644 --- a/data/web/inc/functions.address_rewriting.inc.php +++ b/data/web/inc/functions.address_rewriting.inc.php @@ -287,14 +287,6 @@ function recipient_map($_action, $_data = null, $attr = null) { } switch ($_action) { case 'add': - if (!isset($_SESSION['acl']['recipient_maps']) || $_SESSION['acl']['recipient_maps'] != "1" ) { - $_SESSION['return'][] = array( - 'type' => 'danger', - 'log' => array(__FUNCTION__, $_action, $_data, $_attr), - 'msg' => 'access_denied' - ); - return false; - } $old_dest = strtolower(trim($_data['recipient_map_old'])); if (substr($old_dest, 0, 1) == '@') { $old_dest = substr($old_dest, 1); @@ -359,14 +351,6 @@ function recipient_map($_action, $_data = null, $attr = null) { ); break; case 'edit': - if (!isset($_SESSION['acl']['recipient_maps']) || $_SESSION['acl']['recipient_maps'] != "1" ) { - $_SESSION['return'][] = array( - 'type' => 'danger', - 'log' => array(__FUNCTION__, $_action, $_data, $_attr), - 'msg' => 'access_denied' - ); - return false; - } $ids = (array)$_data['id']; foreach ($ids as $id) { $is_now = recipient_map('details', $id); @@ -482,14 +466,6 @@ function recipient_map($_action, $_data = null, $attr = null) { return $mapdata; break; case 'delete': - if (!isset($_SESSION['acl']['recipient_maps']) || $_SESSION['acl']['recipient_maps'] != "1" ) { - $_SESSION['return'][] = array( - 'type' => 'danger', - 'log' => array(__FUNCTION__, $_action, $_data, $_attr), - 'msg' => 'access_denied' - ); - return false; - } $ids = (array)$_data['id']; foreach ($ids as $id) { if (!is_numeric($id)) {