update-files-1.8.6.2-1.8.7.inc.php 748 B

123456789101112131415161718192021222324
  1. <?php
  2. /* See license terms in /dokeos_license.txt */
  3. /**
  4. ==============================================================================
  5. * Updates the Dokeos files from version 1.8.6.2 to version 1.8.7
  6. * This script operates only in the case of an update, and only to change the
  7. * active version number (and other things that might need a change) in the
  8. * current configuration file.
  9. * @package dokeos.install
  10. ==============================================================================
  11. */
  12. require_once("../inc/lib/main_api.lib.php");
  13. require_once("../inc/lib/fileUpload.lib.php");
  14. require_once('../inc/lib/database.lib.php');
  15. if (defined('DOKEOS_INSTALL') || defined('DOKEOS_COURSE_UPDATE'))
  16. {
  17. }
  18. else
  19. {
  20. echo 'You are not allowed here !';
  21. }
  22. ?>