11 lines
238 B
PHP
Raw Normal View History

2015-09-17 11:13:15 +02:00
<?php
if (!defined('_PS_VERSION_'))
exit;
function upgrade_module_1_1_2($object)
{
Db::getInstance()->execute('UPDATE '._DB_PREFIX_.'configuration SET `name` = UPPER(`name`) WHERE `name` LIKE "BLOCKCONTACTINFOS\_%"');
return true;
}