wallabag/index.php

23 lines
532 B
PHP
Raw Normal View History

2013-04-03 13:14:01 +00:00
<?php
/**
2014-01-28 09:36:04 +00:00
* wallabag, self hostable application allowing you to not miss any content anymore
2013-04-03 13:14:01 +00:00
*
2014-01-28 09:36:04 +00:00
* @category wallabag
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
2013-04-03 13:14:01 +00:00
* @copyright 2013
* @license http://opensource.org/licenses/MIT see COPYING file
2013-04-03 13:14:01 +00:00
*/
2016-04-18 18:02:44 +00:00
define ('POCHE', '1.9.2');
require 'check_essentials.php';
require 'check_setup.php';
require_once 'inc/poche/global.inc.php';
2013-08-16 18:19:31 +00:00
// Start session
Session::$sessionName = 'wallabag';
Session::init(true);
// Let's rock !
$wallabag = new Poche();
2014-11-16 01:29:01 +00:00
$wallabag->run();