Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
23 lines
717 B
PHP
23 lines
717 B
PHP
<?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.
|
|
*
|
|
* @package chamilo.install
|
|
*/
|
|
|
|
/**
|
|
* Variables used from the main/install/index.php.
|
|
*/
|
|
$new_version = '1.11.40';
|
|
$new_version_status = 'stable';
|
|
$new_version_last_id = 0;
|
|
$new_version_stable = true;
|
|
$new_version_major = false;
|
|
$software_name = 'Chamilo';
|
|
$software_url = 'https://chamilo.org/';
|