]> git.wh0rd.org - tt-rss.git/blob - mobile/home.php
mobile: less ugly transition to main page
[tt-rss.git] / mobile / home.php
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 require_once "../config.php";
9 require_once "functions.php";
10 require_once "../functions.php";
11
12 require_once "../sessions.php";
13
14 require_once "../version.php";
15 require_once "../db-prefs.php";
16
17 $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
18
19 init_connection($link);
20
21 login_sequence($link, true);
22
23 render_categories_list($link);
24 ?>