aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc
diff options
context:
space:
mode:
authorMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-04-25 13:41:42 +0300
committerMaryana Rozhankivska <mariroz@mr.lviv.ua>2014-04-25 13:41:42 +0300
commit5b5e47c3aee521497f93ef1e36a71d3824f5a585 (patch)
tree83445ca19b1e11c05ee1dd2fe2b966a40aad8240 /inc
parentb6413975c36a5f912ed95ee749a5a1bd2d868f40 (diff)
downloadwallabag-5b5e47c3aee521497f93ef1e36a71d3824f5a585.tar.gz
wallabag-5b5e47c3aee521497f93ef1e36a71d3824f5a585.tar.zst
wallabag-5b5e47c3aee521497f93ef1e36a71d3824f5a585.zip
fix of already defined constant notice, issue #653
Diffstat (limited to 'inc')
-rwxr-xr-xinc/poche/config.inc.default.php78
1 files changed, 39 insertions, 39 deletions
diff --git a/inc/poche/config.inc.default.php b/inc/poche/config.inc.default.php
index 3b08c212..edc42fc9 100755
--- a/inc/poche/config.inc.default.php
+++ b/inc/poche/config.inc.default.php
@@ -8,56 +8,56 @@
8 * @license http://www.wtfpl.net/ see COPYING file 8 * @license http://www.wtfpl.net/ see COPYING file
9 */ 9 */
10 10
11define ('SALT', ''); # put a strong string here 11@define ('SALT', ''); # put a strong string here
12define ('LANG', 'en_EN.utf8'); 12@define ('LANG', 'en_EN.utf8');
13 13
14define ('STORAGE', 'sqlite'); # postgres, mysql or sqlite 14@define ('STORAGE', 'sqlite'); # postgres, mysql or sqlite
15 15
16define ('STORAGE_SQLITE', ROOT . '/db/poche.sqlite'); # if you are using sqlite, where the database file is located 16@define ('STORAGE_SQLITE', ROOT . '/db/poche.sqlite'); # if you are using sqlite, where the database file is located
17 17
18# only for postgres & mysql 18# only for postgres & mysql
19define ('STORAGE_SERVER', 'localhost'); 19@define ('STORAGE_SERVER', 'localhost');
20define ('STORAGE_DB', 'poche'); 20@define ('STORAGE_DB', 'poche');
21define ('STORAGE_USER', 'poche'); 21@define ('STORAGE_USER', 'poche');
22define ('STORAGE_PASSWORD', 'poche'); 22@define ('STORAGE_PASSWORD', 'poche');
23 23
24################################################################################# 24#################################################################################
25# Do not trespass unless you know what you are doing 25# Do not trespass unless you know what you are doing
26################################################################################# 26#################################################################################
27 27
28// Change this if not using the standart port for SSL - i.e you server is behind sslh 28// Change this if not using the standart port for SSL - i.e you server is behind sslh
29define ('SSL_PORT', 443); 29@define ('SSL_PORT', 443);
30 30
31define ('MODE_DEMO', FALSE); 31@define ('MODE_DEMO', FALSE);
32define ('DEBUG_POCHE', FALSE); 32@define ('DEBUG_POCHE', FALSE);
33define ('DOWNLOAD_PICTURES', FALSE); 33@define ('DOWNLOAD_PICTURES', FALSE);
34define ('CONVERT_LINKS_FOOTNOTES', FALSE); 34@define ('CONVERT_LINKS_FOOTNOTES', FALSE);
35define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE); 35@define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
36define ('SHARE_TWITTER', TRUE); 36@define ('SHARE_TWITTER', TRUE);
37define ('SHARE_MAIL', TRUE); 37@define ('SHARE_MAIL', TRUE);
38define ('SHARE_SHAARLI', FALSE); 38@define ('SHARE_SHAARLI', FALSE);
39define ('SHAARLI_URL', 'http://myshaarliurl.com'); 39@define ('SHAARLI_URL', 'http://myshaarliurl.com');
40define ('FLATTR', TRUE); 40@define ('FLATTR', TRUE);
41define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url='); 41@define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url=');
42define ('NOT_FLATTRABLE', '0'); 42@define ('NOT_FLATTRABLE', '0');
43define ('FLATTRABLE', '1'); 43@define ('FLATTRABLE', '1');
44define ('FLATTRED', '2'); 44@define ('FLATTRED', '2');
45// display or not print link in article view 45// display or not print link in article view
46define ('SHOW_PRINTLINK', '1'); 46@define ('SHOW_PRINTLINK', '1');
47// display or not percent of read in article view. Affects only default theme. 47// display or not percent of read in article view. Affects only default theme.
48define ('SHOW_READPERCENT', '1'); 48@define ('SHOW_READPERCENT', '1');
49define ('ABS_PATH', 'assets/'); 49@define ('ABS_PATH', 'assets/');
50 50
51define ('DEFAULT_THEME', 'baggy'); 51@define ('DEFAULT_THEME', 'baggy');
52 52
53define ('THEME', ROOT . '/themes'); 53@define ('THEME', ROOT . '/themes');
54define ('LOCALE', ROOT . '/locale'); 54@define ('LOCALE', ROOT . '/locale');
55define ('CACHE', ROOT . '/cache'); 55@define ('CACHE', ROOT . '/cache');
56 56
57define ('PAGINATION', '10'); 57@define ('PAGINATION', '10');
58 58
59//limit for download of articles during import 59//limit for download of articles during import
60define ('IMPORT_LIMIT', 5); 60@define ('IMPORT_LIMIT', 5);
61//delay between downloads (in sec) 61//delay between downloads (in sec)
62define ('IMPORT_DELAY', 5); 62@define ('IMPORT_DELAY', 5);
63 63