21 lines
347 B
PHP
21 lines
347 B
PHP
<?php
|
|
/**
|
|
* Carts Guru
|
|
*
|
|
* @author LINKT IT
|
|
* @copyright Copyright (c) LINKT IT 2016
|
|
* @license Commercial license
|
|
*/
|
|
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit();
|
|
}
|
|
|
|
// Upgrade module to 1.4.13
|
|
function upgrade_module_1_4_13($module)
|
|
{
|
|
// Register the new version in API
|
|
$module->registerPluginAfterUpdate();
|
|
return true;
|
|
}
|