12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- use ChamiloSession as Session;
- api_protect_course_script(true);
- api_block_anonymous_users();
- unlink($_SESSION['temp_realpath_image']);
- Session::erase('paint_dir');
- Session::erase('paint_file');
- Session::erase('whereami');
- Session::erase('temp_realpath_image');
- if (!isset($_SESSION['exit_pixlr'])){
- $location=api_get_path(WEB_CODE_PATH).'document/document.php';
- echo '<script>window.parent.location.href="'.$location.'"</script>';
- api_not_allowed(true);
- } else {
- echo '<div align="center" style="padding-top:150; font-family:Arial, Helvetica, Sans-serif;font-size:25px;color:#aaa;font-weight:bold;">'.get_lang('PleaseStandBy').'</div>';
- $location=api_get_path(WEB_CODE_PATH).'document/document.php?id='.Security::remove_XSS($_SESSION['exit_pixlr']);
- echo '<script>window.parent.location.href="'.$location.'"</script>';
- unset($_SESSION['exit_pixlr']);
- }
|