Files
PrestaShop/modules/blockspecials/upgrade/install-0.9.php
Vincent Augagneur a519f4a7cb //small fix
2013-07-01 16:40:08 +02:00

11 lines
277 B
PHP

<?php
if (!defined('_PS_VERSION_'))
exit;
function upgrade_module_0_9($object)
{
Configuration::updateValue('BLOCKSPECIALS_NB_CACHES', 20);
return ($object->registerHook('addproduct') && $object->registerHook('updateproduct') && $object->registerHook('deleteproduct'));
}