]> git.wh0rd.org - tt-rss.git/blame - plugins/mobile/cat.php
remove $link
[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
19 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
20
ba68b681 21 init_plugins($link);
9d9ed2b3 22
6322ac79 23 login_sequence( true);
9d9ed2b3 24
6322ac79 25 $cat_id = db_escape_string( $_REQUEST["id"]);
9d9ed2b3 26
6322ac79 27 render_category( $cat_id);
9d9ed2b3
AD
28?>
29