]> git.immae.eu Git - github/wallabag/wallabag.git/blob - index.php
removed permissions test on htmlpurifier
[github/wallabag/wallabag.git] / index.php
1 <?php
2 /**
3 * wallabag, self hostable application allowing you to not miss any content anymore
4 *
5 * @category wallabag
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://opensource.org/licenses/MIT see COPYING file
9 */
10
11 define ('POCHE', '1.8.0');
12 require 'check_setup.php';
13 require_once 'inc/poche/global.inc.php';
14
15 // Start session
16 Session::$sessionName = 'wallabag';
17 Session::init();
18
19 // Let's rock !
20 $wallabag = new Poche();
21 $wallabag->run();