Browse Source

[Web] Fix removal of alias domain

andre.peters 7 years ago
parent
commit
f5a6667aad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      data/web/inc/functions.mailbox.inc.php

+ 1 - 1
data/web/inc/functions.mailbox.inc.php

@@ -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->execute(array(
-                ':domain' => $alias_domain,
+                ':alias_domain' => $alias_domain,
               ));
             }
             catch (PDOException $e) {