diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-20 14:11:26 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-20 14:11:26 +0100 |
commit | 79e051a1f216704752e05f5174633abf20dde582 (patch) | |
tree | e55b7f46aad7c8df42534e638b25cdbc258a3c40 /web/index.php | |
parent | 97a2dd74c872891b694bff0485a0fcc9a82a09e4 (diff) | |
download | wallabag-79e051a1f216704752e05f5174633abf20dde582.tar.gz wallabag-79e051a1f216704752e05f5174633abf20dde582.tar.zst wallabag-79e051a1f216704752e05f5174633abf20dde582.zip |
restructure folders
Diffstat (limited to 'web/index.php')
-rw-r--r-- | web/index.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/web/index.php b/web/index.php index 05355727..84e49eb1 100644 --- a/web/index.php +++ b/web/index.php | |||
@@ -10,6 +10,8 @@ | |||
10 | 10 | ||
11 | define ('WALLABAG', '2.0.0-alpha'); | 11 | define ('WALLABAG', '2.0.0-alpha'); |
12 | 12 | ||
13 | use Wallabag\Wallabag\Wallabag; | ||
14 | |||
13 | require_once '../app/check_essentials.php'; | 15 | require_once '../app/check_essentials.php'; |
14 | require_once '../app/check_setup.php'; | 16 | require_once '../app/check_setup.php'; |
15 | require_once '../app/config/global.inc.php'; | 17 | require_once '../app/config/global.inc.php'; |
@@ -23,5 +25,5 @@ Session::$sessionName = 'wallabag'; | |||
23 | Session::init(); | 25 | Session::init(); |
24 | 26 | ||
25 | // Let's rock ! | 27 | // Let's rock ! |
26 | $wallabag = new Wallabag\Wallabag\Wallabag(); | 28 | $wallabag = new Wallabag(); |
27 | $wallabag->run(); \ No newline at end of file | 29 | $wallabag->run(); \ No newline at end of file |