summaryrefslogtreecommitdiff
path: root/plugins/mobile/article.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mobile/article.php')
-rw-r--r--plugins/mobile/article.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/plugins/mobile/article.php b/plugins/mobile/article.php
deleted file mode 100644
index 64768c983..000000000
--- a/plugins/mobile/article.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
- error_reporting(E_ERROR | E_WARNING | E_PARSE);
-
- header('Content-Type: text/html; charset=utf-8');
-
- define('MOBILE_VERSION', true);
-
- $basedir = dirname(dirname(dirname(__FILE__)));
-
- set_include_path(
- dirname(__FILE__) . PATH_SEPARATOR .
- $basedir . PATH_SEPARATOR .
- "$basedir/include" . PATH_SEPARATOR .
- get_include_path());
-
- require_once "config.php";
- require_once "mobile-functions.php";
-
- login_sequence(true);
-
- $id = db_escape_string($_REQUEST["id"]);
- $feed_id = db_escape_string($_REQUEST["feed"]);
- $cat_id = db_escape_string($_REQUEST["cat"]);
- $is_cat = db_escape_string($_REQUEST["is_cat"]);
-
- render_article($id, $feed_id, $cat_id, $is_cat);
-?>
-