]> git.wh0rd.org - tt-rss.git/blame - plugins/mobile/cat.php
Updated Swedish translation for 1.7.9
[tt-rss.git] / plugins / mobile / cat.php
CommitLineData
9d9ed2b3
AD
1<?php
2 error_reporting(E_ERROR | E_WARNING | E_PARSE);
3
4 header('Content-Type: text/html; charset=utf-8');
5
6 define('MOBILE_VERSION', true);
7
8 $basedir = dirname(dirname(dirname(__FILE__)));
9
10 set_include_path(
11 dirname(__FILE__) . PATH_SEPARATOR .
12 $basedir . PATH_SEPARATOR .
13 "$basedir/include" . PATH_SEPARATOR .
14 get_include_path());
15
16 require_once "config.php";
17 require_once "mobile-functions.php";
18
a42c55f0 19 login_sequence(true);
9d9ed2b3 20
a42c55f0 21 $cat_id = db_escape_string($_REQUEST["id"]);
9d9ed2b3 22
a42c55f0 23 render_category($cat_id);
9d9ed2b3
AD
24?>
25