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
|
2014-07-11 14:03:59 +00:00
|
|
|
* @license http://opensource.org/licenses/MIT see COPYING file
|
2013-04-03 13:14:01 +00:00
|
|
|
*/
|
|
|
|
|
2015-05-09 15:52:21 +00:00
|
|
|
define ('POCHE', '1.9.1');
|
2014-07-22 09:52:18 +00:00
|
|
|
require 'check_essentials.php';
|
|
|
|
require 'check_setup.php';
|
2014-08-21 14:17:36 +00:00
|
|
|
require_once 'inc/poche/global.inc.php';
|
2013-08-16 18:19:31 +00:00
|
|
|
|
2014-07-12 14:39:31 +00:00
|
|
|
// Start session
|
|
|
|
Session::$sessionName = 'wallabag';
|
|
|
|
Session::init();
|
2014-06-02 15:00:09 +00:00
|
|
|
|
2014-07-12 14:39:31 +00:00
|
|
|
// Let's rock !
|
|
|
|
$wallabag = new Poche();
|
2014-11-16 01:29:01 +00:00
|
|
|
$wallabag->run();
|