forked from atutor/AContent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_acheck.php
42 lines (33 loc) · 1.51 KB
/
get_acheck.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/************************************************************************/
/* AContent */
/************************************************************************/
/* Copyright (c) 2010 */
/* Inclusive Design Institute */
/* */
/* This program is free software. You can redistribute it and/or */
/* modify it under the terms of the GNU General Public License */
/* as published by the Free Software Foundation. */
/************************************************************************/
/* this file simply gets the TR_CONTENT_DIR/CID.html file that was generated
* by the AChecker page of the content editor.
* there is no authentication on this page. either the file exists (in which
* case it is then quickly deleted after), or it doesn't.
*/
$_user_location = 'public';
define('TR_INCLUDE_PATH', 'include/');
require(TR_INCLUDE_PATH . '/vitals.inc.php');
//get path to file
$args = substr($_SERVER['PHP_SELF'], strlen($_SERVER['SCRIPT_NAME']));
$file = TR_CONTENT_DIR . $args;
//check that this file is within the content directory & exists
$real = realpath($file);
if (substr($real, 0, strlen(TR_CONTENT_DIR)) == TR_CONTENT_DIR) {
header('Content-Type: text/html');
echo file_get_contents($real);
exit;
} else {
header('HTTP/1.1 404 Not Found');
exit;
}
?>