version.php 715 B

1234567891011121314151617181920212223
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This script lists the necessary variables that allow the installation
  5. * system to know in which version is the current Chamilo install. This
  6. * script should be overwritten with each upgrade of Chamilo. It is not
  7. * required from any other process of Chamilo than the installation or upgrade.
  8. * It also helps for automatic packaging of unstable versions.
  9. *
  10. * @package chamilo.install
  11. */
  12. /**
  13. * Variables used from the main/install/index.php
  14. */
  15. $new_version = '1.11.4';
  16. $new_version_status = 'alpha';
  17. $new_version_last_id = 0;
  18. $new_version_stable = false;
  19. $new_version_major = false;
  20. $software_name = 'Chamilo';
  21. $software_url = 'https://chamilo.org/';