diff --git a/modules/Migration/models/Module.php b/modules/Migration/models/Module.php index 5d7cdd3b61c6fef4d1b6498abfbd720b4d752437..2cd96cc4055b061624f709d6d4e2810773de370f 100644 --- a/modules/Migration/models/Module.php +++ b/modules/Migration/models/Module.php @@ -38,6 +38,7 @@ class Migration_Module_Model extends Vtiger_Module_Model { array('660' => '6.6.0'), array('700' => '7.0.0'), array('701' => '7.0.1'), + array('710' => '7.1.0'), ); return $versions; } diff --git a/modules/Migration/schema/701_to_710.php b/modules/Migration/schema/701_to_710.php new file mode 100644 index 0000000000000000000000000000000000000000..79212575994861133adb8bac2438b894450c147c --- /dev/null +++ b/modules/Migration/schema/701_to_710.php @@ -0,0 +1,17 @@ +<?php +/*+******************************************************************************** + * The contents of this file are subject to the vtiger CRM Public License Version 1.0 + * ("License"); You may not use this file except in compliance with the License + * The Original Code is: vtiger CRM Open Source + * The Initial Developer of the Original Code is vtiger. + * Portions created by vtiger are Copyright (C) vtiger. + * All Rights Reserved. + *********************************************************************************/ + +if (defined('VTIGER_UPGRADE')) { + global $current_user; + $db = PearDatabase::getInstance(); + + //Update existing package modules + Install_Utils_Model::installModules(); +} \ No newline at end of file diff --git a/vtigerversion.php b/vtigerversion.php index ef072decbf69f197b7baaeb58a010cd2fa408bb4..5aebab4ff03a290d91f2f3f9a974c308abecc40e 100644 --- a/vtigerversion.php +++ b/vtigerversion.php @@ -10,7 +10,7 @@ $patch_version = '20170606'; // -ve timestamp before release, +ve timestamp after release. $modified_database = ''; -$vtiger_current_version = '7.0.1'; +$vtiger_current_version = '7.1.0'; $_SESSION['vtiger_version'] = $vtiger_current_version; ?> \ No newline at end of file