From 3ca2975a6cd74cc61fe16aaead77651e94f2cef5 Mon Sep 17 00:00:00 2001 From: bMancone Date: Thu, 1 Mar 2012 14:29:10 +0000 Subject: [PATCH] // hook updateProduct is now deprecated git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13790 b9a71923-0436-4b27-9f14-aed3839534dd --- modules/mailalerts/mailalerts.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/mailalerts/mailalerts.php b/modules/mailalerts/mailalerts.php index 8350c94c5..c45094a1d 100644 --- a/modules/mailalerts/mailalerts.php +++ b/modules/mailalerts/mailalerts.php @@ -77,6 +77,7 @@ class MailAlerts extends Module !$this->registerHook('actionProductDelete') || !$this->registerHook('actionProductAttributeDelete') || !$this->registerHook('actionProductAttributeUpdate') || + !$this->registerHook('actionProductUpdate') || !$this->registerHook('displayHeader')) return false; @@ -443,6 +444,12 @@ class MailAlerts extends Module MailAlert::sendCustomerAlert((int)$result['id_product'], (int)$params['id_product_attribute']); } + public function hookActionProductUpdate($params) + { + // @deprecated 1.5.x + Tools::displayAsDeprecated(); + } + public function hookDisplayCustomerAccount($params) { return $this->_customer_qty ? $this->display(__FILE__, 'my-account.tpl') : null;