PreorderBilling: Added ANB invoicing emails from config file
This commit is contained in:
@@ -466,7 +466,7 @@ class PreorderBillingController extends mfBaseController {
|
||||
$billing_data["zip"] = trim($netoperator->zip);
|
||||
$billing_data["city"] = trim($netoperator->city);
|
||||
$billing_data["country"] = trim($netoperator->country->name);
|
||||
$billing_data["email"] = trim($netoperator->email);
|
||||
$billing_data["email"] = trim($netoperator_config["email"]);
|
||||
$billing_data["uid"] = trim($netoperator->uid);
|
||||
} else {
|
||||
die("Unknown billing type $type");
|
||||
@@ -740,7 +740,7 @@ class PreorderBillingController extends mfBaseController {
|
||||
"zip" => trim($netoperator->zip),
|
||||
"city" => trim($netoperator->city),
|
||||
"country" => trim($netoperator->country->name),
|
||||
"email" => trim($netoperator->email),
|
||||
"email" => trim($netoperator_config["email"]),
|
||||
"uid" => trim($netoperator->uid),
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user