19 lines
477 B
PHP
19 lines
477 B
PHP
<?php
|
|
/**
|
|
* Blog for PrestaShop module by Krystian Podemski from PrestaHome.
|
|
*
|
|
* @author Krystian Podemski <krystian@prestahome.com>
|
|
* @copyright Copyright (c) 2014-2016 Krystian Podemski - www.PrestaHome.com / www.Podemski.info
|
|
* @license You only can use module, nothing more!
|
|
*/
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
function upgrade_module_1_2_2_3($object)
|
|
{
|
|
Configuration::updateGlobalValue('PH_BLOG_COMMENT_AUTO_APPROVAL', '0');
|
|
|
|
return true;
|
|
}
|