aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/config.php')
-rw-r--r--inc/config.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/config.php b/inc/config.php
index 4db3cf40..386fd036 100644
--- a/inc/config.php
+++ b/inc/config.php
@@ -14,6 +14,7 @@ if (!is_dir('db/')) {
14 14
15define ('DB_PATH', 'sqlite:./db/poche.sqlite'); 15define ('DB_PATH', 'sqlite:./db/poche.sqlite');
16define ('ABS_PATH', 'assets/'); 16define ('ABS_PATH', 'assets/');
17define ('CONVERT_LINKS_FOOTNOTES', TRUE);
17define ('DOWNLOAD_PICTURES', TRUE); 18define ('DOWNLOAD_PICTURES', TRUE);
18 19
19include 'db.php'; 20include 'db.php';
@@ -50,5 +51,5 @@ $url = (isset ($_GET['url'])) ? $_GET['url'] : '';
50$token = (isset ($_REQUEST['token'])) ? $_REQUEST['token'] : ''; 51$token = (isset ($_REQUEST['token'])) ? $_REQUEST['token'] : '';
51 52
52if ($action != '') { 53if ($action != '') {
53 action_to_do($action, $id, $url, $token); 54 action_to_do($action, $url, $token, $id);
54} 55}