1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2025-12-16 03:15:59 +00:00

[Web] Fix removal of alias domain

This commit is contained in:
andre.peters
2017-12-17 17:44:28 +01:00
parent ae56c3b59e
commit f5a6667aad

View File

@@ -3492,7 +3492,7 @@ function mailbox($_action, $_type, $_data = null, $attr = null) {
)); ));
$stmt = $pdo->prepare("DELETE FROM `bcc_maps` WHERE `local_dest` = :alias_domain"); $stmt = $pdo->prepare("DELETE FROM `bcc_maps` WHERE `local_dest` = :alias_domain");
$stmt->execute(array( $stmt->execute(array(
':domain' => $alias_domain, ':alias_domain' => $alias_domain,
)); ));
} }
catch (PDOException $e) { catch (PDOException $e) {