Browse Source

Adds missing values to alias INSERT statement.

public_comment and private_comments were missing from the VALUES array in PDO prepare statement.
Guilherme Capanema de Barros 6 years ago
parent
commit
6f7e47ee40
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

@@ -604,7 +604,7 @@ function mailbox($_action, $_type, $_data = null, $_extra = null) {
               return false;
             }
             $stmt = $pdo->prepare("INSERT INTO `alias` (`address`, `public_comment`, `private_comment`, `goto`, `domain`, `active`)
-              VALUES (:address, :goto, :domain, :active)");
+              VALUES (:address, :public_comment, :private_comment, :goto, :domain, :active)");
             if (!filter_var($address, FILTER_VALIDATE_EMAIL) === true) {
               $stmt->execute(array(
                 ':address' => '@'.$domain,