123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- include('../inc/global.inc.php');
- $this_section=SECTION_COURSES;
- $link_url = Security::remove_XSS($_GET['link_url']);
- $link_id = Security::remove_XSS($_GET['link_id']);
- event_link($link_id);
- header("Cache-Control: no-store, no-cache, must-revalidate");
- header("Cache-Control: post-check=0, pre-check=0", false);
- header("Pragma: no-cache");
- header("Location: $link_url");
- exit;
- ?>
|