You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
890 B
27 lines
890 B
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
/**
|
|
* This script lists the necessary variables that allow the installation
|
|
* system to know in which version is the current Chamilo install. This
|
|
* script should be overwritten with each upgrade of Chamilo. It is not
|
|
* required from any other process of Chamilo than the installation or upgrade.
|
|
* It also helps for automatic packaging of unstable versions.
|
|
*/
|
|
/*$new_version = '2.0.0';
|
|
$new_version_status = 'alpha';
|
|
$new_version_last_id = 0;
|
|
$new_version_stable = false;
|
|
$new_version_major = true;
|
|
$software_name = 'Chamilo';
|
|
$software_url = 'https://chamilo.org/';*/
|
|
|
|
return [
|
|
'new_version' => '2.0.0',
|
|
'new_version_status' => 'alpha',
|
|
'new_version_last_id' => '0',
|
|
'new_version_stable' => false,
|
|
'new_version_major' => true,
|
|
'software_name' => 'Chamilo',
|
|
'software_url' => 'https://chamilo.org/',
|
|
];
|
|
|