]> git.wh0rd.org - tt-rss.git/blobdiff - mobile/image.php
remove long deprecated mobile/
[tt-rss.git] / mobile / image.php
diff --git a/mobile/image.php b/mobile/image.php
deleted file mode 100644 (file)
index 765fcc2..0000000
+++ /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']);
-       }
-?>