1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-11 17:51:02 +00:00

remove legacy code

This commit is contained in:
Nicolas Lœuillet 2015-01-27 13:07:27 +01:00
parent 6b767d1cc0
commit d692b3b08d
259 changed files with 0 additions and 19500 deletions

View file

@ -1,28 +0,0 @@
<?php
/**
* wallabag, self hostable application allowing you to not miss any content anymore
*
* @category wallabag
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
* @copyright 2013
* @license http://opensource.org/licenses/MIT see COPYING file
*/
define ('WALLABAG', '2.0.0-alpha');
use Wallabag\Wallabag\Wallabag;
require_once '../app/check_essentials.php';
require_once '../app/config/global.inc.php';
// Check if /cache is writable
if (! is_writable(CACHE)) {
die('The directory ' . CACHE . ' must be writable by your web server user');
}
Session::$sessionName = 'wallabag';
Session::init();
// Let's rock !
$wallabag = new Wallabag();
$wallabag->run();