lp_save.php 1012 B

123456789101112131415161718192021222324252627282930313233343536
  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. */
  11. /**
  12. * Switching within the field to update
  13. */
  14. $msg = $_SESSION['oLP']->get_message();
  15. error_log('New LP - Loaded lp_save : '.$_SERVER['REQUEST_URI'].' from '.$_SERVER['HTTP_REFERER'], 0);
  16. ?>
  17. <!DOCTYPE html
  18. PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  19. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  20. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo api_get_language_isocode(); ?>" lang="<?php echo api_get_language_isocode(); ?>">
  21. <head>
  22. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo api_get_system_encoding(); ?>" />
  23. <script language='javascript'>
  24. <?php
  25. if ($_SESSION['oLP']->mode != 'fullscreen') {
  26. }
  27. ?>
  28. </script>
  29. </head>
  30. <body dir="<?php echo api_get_text_direction(); ?>">
  31. </body></html>