lp_save.php 963 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Script that handles the saving of item status
  5. * @package chamilo.learnpath
  6. * @author Yannick Warnier <ywarnier@beeznest.org>
  7. */
  8. /**
  9. * Initialization is to be done by lp_controller.php.
  10. * Switching within the field to update
  11. */
  12. error_log('New LP - Loaded lp_save : '.$_SERVER['REQUEST_URI'].' from '.$_SERVER['HTTP_REFERER'], 0);
  13. ?>
  14. <!DOCTYPE html
  15. PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  16. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  17. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo api_get_language_isocode(); ?>" lang="<?php echo api_get_language_isocode(); ?>">
  18. <head>
  19. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo api_get_system_encoding(); ?>" />
  20. <script language='javascript'>
  21. <?php
  22. if ($_SESSION['oLP']->mode != 'fullscreen') {
  23. }
  24. ?>
  25. </script>
  26. </head>
  27. <body dir="<?php echo api_get_text_direction(); ?>">
  28. </body></html>