diff options
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 |