10 lines
180 B
PHP
10 lines
180 B
PHP
|
<?php
|
||
|
|
||
|
if (!defined('_PS_VERSION_'))
|
||
|
exit;
|
||
|
|
||
|
function upgrade_module_2_4($object)
|
||
|
{
|
||
|
return ($object->registerHook('displayProductListReviews') && $object->registerHook('top'));
|
||
|
}
|