This commit introduces a new index.php file in the googlemerchant XML module. The file contains headers to prevent caching and redirects users to the parent directory. This is part of the module's structure to ensure proper access control and user experience.
13 lines
247 B
PHP
13 lines
247 B
PHP
<?php
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
function upgrade_module_1_5_2($module)
|
|
{
|
|
Configuration::updateValue('X13_GOOGLEMERCHANT_ATTR_TITLE', 1);
|
|
Configuration::updateValue('X13_GOOGLEMERCHANT_ATTR_DESC', 1);
|
|
|
|
return true;
|
|
}
|