<?php
// -----
// Part of the Encrypted Master Password plugin, provided by
[email protected]
//
// Copyright (C) 2013-2014 Vinos de Frutas Tropicales
//
// @license
http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
//
// -----
// When entered via the "Place Order" button from the admin, the customer's email address is posted but somehow (on PHP 5.4)
// doesn't get recorded in the $GLOBALS array (which is where the default input field values are gathered.
//
if (isset ($_POST['email_address'])) {
$GLOBALS['email_address'] = $_POST['email_address'];
}
class emp_order_observer extends base {
function emp_order_observer() {
$this->attach ($this, array ('NOTIFY_ORDER_DURING_CREATE_ADDED_ORDER_COMMENT', 'NOTIFY_PROCESS_3RD_PARTY_LOGINS'));
}
// -----
Bookmarks