aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/config.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-02 10:39:03 +0200
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-02 10:39:03 +0200
commit2ee436eaa19fd5819a0e6c705b5fcc93f11fb338 (patch)
tree0800203c342c47f8bb0bbb626f55e6158cd2674a /inc/config.php
parent02ea9f07691adf79f3f9d6cddfb1e045777927b6 (diff)
downloadwallabag-2ee436eaa19fd5819a0e6c705b5fcc93f11fb338.tar.gz
wallabag-2ee436eaa19fd5819a0e6c705b5fcc93f11fb338.tar.zst
wallabag-2ee436eaa19fd5819a0e6c705b5fcc93f11fb338.zip
poche / pocket / bolsillo / Tasche & more
Diffstat (limited to 'inc/config.php')
-rw-r--r--inc/config.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/inc/config.php b/inc/config.php
index 4b46366d..6e3f80b8 100644
--- a/inc/config.php
+++ b/inc/config.php
@@ -20,6 +20,13 @@ define ('CONVERT_LINKS_FOOTNOTES', TRUE);
20define ('REVERT_FORCED_PARAGRAPH_ELEMENTS',FALSE); 20define ('REVERT_FORCED_PARAGRAPH_ELEMENTS',FALSE);
21define ('DOWNLOAD_PICTURES', TRUE); 21define ('DOWNLOAD_PICTURES', TRUE);
22define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX'); 22define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX');
23define ('LANG', 'fr_FR.UTF8');
24
25putenv("LC_ALL=".LANG);
26setlocale(LC_ALL, LANG);
27bindtextdomain(LANG, "./locale");
28textdomain(LANG);
29
23$storage_type = 'sqlite'; # sqlite or file 30$storage_type = 'sqlite'; # sqlite or file
24 31
25include 'functions.php'; 32include 'functions.php';