aboutsummaryrefslogtreecommitdiffhomepage
path: root/web
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2015-01-27 13:07:27 +0100
committerNicolas Lœuillet <nicolas@loeuillet.org>2015-01-27 13:07:27 +0100
commitd692b3b08d26d3f945d52f6cf5e9f90335d74cdd (patch)
treededa17330945a7ba0ece3162dfa5d5eae874c334 /web
parent6b767d1cc0e9697af95ec399fd612d203d10826a (diff)
downloadwallabag-d692b3b08d26d3f945d52f6cf5e9f90335d74cdd.tar.gz
wallabag-d692b3b08d26d3f945d52f6cf5e9f90335d74cdd.tar.zst
wallabag-d692b3b08d26d3f945d52f6cf5e9f90335d74cdd.zip
remove legacy code
Diffstat (limited to 'web')
-rw-r--r--web/index.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/web/index.php b/web/index.php
deleted file mode 100644
index ac361181..00000000
--- a/web/index.php
+++ /dev/null
@@ -1,28 +0,0 @@
1<?php
2/**
3 * wallabag, self hostable application allowing you to not miss any content anymore
4 *
5 * @category wallabag
6 * @author Nicolas Lœuillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://opensource.org/licenses/MIT see COPYING file
9 */
10
11define ('WALLABAG', '2.0.0-alpha');
12
13use Wallabag\Wallabag\Wallabag;
14
15require_once '../app/check_essentials.php';
16require_once '../app/config/global.inc.php';
17
18// Check if /cache is writable
19if (! is_writable(CACHE)) {
20 die('The directory ' . CACHE . ' must be writable by your web server user');
21}
22
23Session::$sessionName = 'wallabag';
24Session::init();
25
26// Let's rock !
27$wallabag = new Wallabag();
28$wallabag->run(); \ No newline at end of file