1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00
wallabag/index.php

26 lines
568 B
PHP
Raw Normal View History

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
* @license http://opensource.org/licenses/MIT see COPYING file
2013-04-03 15:14:01 +02:00
*/
define ('POCHE', '1.8.0');
require 'check_setup.php';
2013-09-20 10:21:39 +02:00
require_once 'inc/poche/global.inc.php';
2013-08-16 20:19:31 +02:00
2014-06-30 22:15:55 +02:00
if (defined('ERROR_REPORTING')) {
error_reporting(ERROR_REPORTING);
}
// Start session
Session::$sessionName = 'wallabag';
2014-03-21 14:59:30 +02:00
Session::init();
// Let's rock !
$wallabag = new Poche();
$wallabag->run();