diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-20 11:23:32 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-20 11:23:32 +0200 |
commit | 746f93c290881d97997b8179395de2875eb57c71 (patch) | |
tree | 8851400fe88195509343dd4f28ae537747f8e628 /index.php | |
parent | 38330bfd65181d63609b9350324aa13f1e967bc3 (diff) | |
download | wallabag-746f93c290881d97997b8179395de2875eb57c71.tar.gz wallabag-746f93c290881d97997b8179395de2875eb57c71.tar.zst wallabag-746f93c290881d97997b8179395de2875eb57c71.zip |
fix bug #148 Use of undefined constant POCHE_VERSION
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -8,6 +8,9 @@ | |||
8 | * @license http://www.wtfpl.net/ see COPYING file | 8 | * @license http://www.wtfpl.net/ see COPYING file |
9 | */ | 9 | */ |
10 | 10 | ||
11 | if (file_exists(__DIR__ . '/inc/poche/myconfig.inc.php')) { | ||
12 | require_once __DIR__ . '/inc/poche/myconfig.inc.php'; | ||
13 | } | ||
11 | require_once './inc/poche/Tools.class.php'; | 14 | require_once './inc/poche/Tools.class.php'; |
12 | Tools::createMyConfig(); | 15 | Tools::createMyConfig(); |
13 | 16 | ||