* @copyright Since 2013 Ovidiu Cimpean * @license Do not edit, modify or copy this file * * @version Release: 4 */ if (!defined('_PS_VERSION_')) { exit; } function upgrade_module_4_8_7($module) { $upgrade = $module->upgrade; $upgrade->updateConfiguration('SHOW_CLEAR_CACHE', 1); $upgrade->updateConfiguration('CUSTOMER_ACCOUNT_SUBSCRIBE_BY_LOI', false); $upgrade->registerHook('displayCustomerIdentityForm'); $upgrade->registerHook('displayCustomerAccountForm'); $upgrade->registerHook('actionCustomerAccountAdd'); $upgrade->registerHook('actionCustomerAccountUpdate'); return $upgrade->success(); }