28 lines
884 B
PHP
28 lines
884 B
PHP
<?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.
|
|
*
|
|
********************************************************************************/
|
|
|
|
//This array contains all the versions to which are all we are providing migration
|
|
//For each and every release we have to add the previous release version in this array
|
|
|
|
$versions = Array(
|
|
"510"=>"5.1.0",
|
|
'520rc'=>'5.2.0 RC',
|
|
'520'=>'5.2.0',
|
|
'521'=>'5.2.1',
|
|
'530rc'=>'5.3.0 RC',
|
|
'530'=>'5.3.0',
|
|
'540rc'=>'5.4.0 RC'
|
|
);
|
|
|
|
$current_version = '540';
|
|
|
|
?>
|