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