summaryrefslogtreecommitdiff
path: root/image.php
blob: d240dbc68ff9330d32e79c96a9b70e7d9d7340d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
	set_include_path(get_include_path() . PATH_SEPARATOR .
		dirname(__FILE__) . "/include");

	require_once "config.php";

	$filename = CACHE_DIR . '/images/' . sha1($_GET['url']) . '.png';

	if (file_exists($filename)) {
		header("Content-type: image/png");
		echo file_get_contents($filename);
	} else {
		header("Location: " . $_GET['url']);
	}
?>