summaryrefslogtreecommitdiff
path: root/mobile/image.php
diff options
context:
space:
mode:
authorRichard Beales <[email protected]>2013-03-21 20:06:03 +0000
committerRichard Beales <[email protected]>2013-03-21 20:06:03 +0000
commitc489ae913d1778a9cdab45092bf0015e74300909 (patch)
tree400e4934b03feb6df256ffd5e381ae46e4fffe46 /mobile/image.php
parent15c1a04d103ae4d36c68831932a27acfdee6eb5c (diff)
parent9d9432dab87e3887e4f482ac5afff1586530c692 (diff)
echo upstream delete of mobile/index.php
Diffstat (limited to 'mobile/image.php')
-rw-r--r--mobile/image.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/mobile/image.php b/mobile/image.php
deleted file mode 100644
index 765fcc240..000000000
--- a/mobile/image.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
- set_include_path(dirname(__FILE__) . PATH_SEPARATOR .
- dirname(dirname(__FILE__)) . PATH_SEPARATOR .
- dirname(dirname(__FILE__)) . "/include" . PATH_SEPARATOR .
- get_include_path());
-
- require_once "config.php";
-
- chdir('..');
-
- $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']);
- }
-?>