diff options
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/index.php b/index.php deleted file mode 100755 index adfef71b..00000000 --- a/index.php +++ /dev/null | |||
@@ -1,22 +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 | |||
11 | define ('POCHE', '1.8.1'); | ||
12 | require 'check_essentials.php'; | ||
13 | require 'check_setup.php'; | ||
14 | require_once 'inc/poche/global.inc.php'; | ||
15 | |||
16 | // Start session | ||
17 | Session::$sessionName = 'wallabag'; | ||
18 | Session::init(); | ||
19 | |||
20 | // Let's rock ! | ||
21 | $wallabag = new Poche(); | ||
22 | $wallabag->run(); | ||