version.php 750 B

1234567891011121314151617181920
  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. * @package chamilo.install
  10. */
  11. /**
  12. * Variables used from the main/install/index.php
  13. */
  14. $new_version = '1.9.4';
  15. $new_version_status = 'rc';
  16. $new_version_last_id = 1;
  17. $new_version_stable = false;
  18. $new_version_major = false;
  19. $software_name = 'Chamilo';
  20. $software_url = 'http://www.chamilo.org/';