diff options
Diffstat (limited to 'inc/config.php')
-rw-r--r-- | inc/config.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/inc/config.php b/inc/config.php index 51a25d36..a7904def 100644 --- a/inc/config.php +++ b/inc/config.php | |||
@@ -8,9 +8,12 @@ | |||
8 | * @license http://www.wtfpl.net/ see COPYING file | 8 | * @license http://www.wtfpl.net/ see COPYING file |
9 | */ | 9 | */ |
10 | 10 | ||
11 | if(!is_dir('db/')){mkdir('db/',0705);} | 11 | if (!is_dir('db/')) { |
12 | @mkdir('db/',0705); | ||
13 | } | ||
14 | |||
12 | define ('DB_PATH', 'sqlite:./db/poche.sqlite'); | 15 | define ('DB_PATH', 'sqlite:./db/poche.sqlite'); |
13 | define ('ABS_PATH', 'archiveImg/'); | 16 | define ('ABS_PATH', 'assets/'); |
14 | 17 | ||
15 | include 'db.php'; | 18 | include 'db.php'; |
16 | include 'functions.php'; | 19 | include 'functions.php'; |