aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/config/wallabag.yml
diff options
context:
space:
mode:
authorNicolas Hart <contact@nclshart.net>2017-10-13 23:52:15 +0200
committerNicolas Hart <contact@nclshart.net>2017-10-14 00:32:56 +0200
commit9ca069a6fea67ddf2ef44601901ea3c02e3cffbe (patch)
tree55bc8ee87f1f758bea7617bc24bc02c4a0c19408 /app/config/wallabag.yml
parentf44a927530476eaf903525481e5e8114c3b017b8 (diff)
downloadwallabag-9ca069a6fea67ddf2ef44601901ea3c02e3cffbe.tar.gz
wallabag-9ca069a6fea67ddf2ef44601901ea3c02e3cffbe.tar.zst
wallabag-9ca069a6fea67ddf2ef44601901ea3c02e3cffbe.zip
Replace kernel.root_dir by kernel.project_dir
kernel.root_dir and Kernel::getRootDir() are deprecated since Symfony 3.3. See https://symfony.com/blog/new-in-symfony-3-3-a-simpler-way-to-get-the-project-root-directory and https://github.com/symfony/symfony/blob/3.3/UPGRADE-3.3.md#httpkernel for more information.
Diffstat (limited to 'app/config/wallabag.yml')
-rw-r--r--app/config/wallabag.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/config/wallabag.yml b/app/config/wallabag.yml
index d70653ce..6b4722fc 100644
--- a/app/config/wallabag.yml
+++ b/app/config/wallabag.yml
@@ -27,7 +27,7 @@ wallabag_core:
27 fetching_error_message: | 27 fetching_error_message: |
28 wallabag can't retrieve contents for this article. Please <a href="http://doc.wallabag.org/en/user/errors_during_fetching.html#how-can-i-help-to-fix-that">troubleshoot this issue</a>. 28 wallabag can't retrieve contents for this article. Please <a href="http://doc.wallabag.org/en/user/errors_during_fetching.html#how-can-i-help-to-fix-that">troubleshoot this issue</a>.
29 api_limit_mass_actions: 10 29 api_limit_mass_actions: 10
30 encryption_key_path: "%kernel.root_dir%/../data/site-credentials-secret-key.txt" 30 encryption_key_path: "%kernel.project_dir%/data/site-credentials-secret-key.txt"
31 default_internal_settings: 31 default_internal_settings:
32 - 32 -
33 name: share_public 33 name: share_public
@@ -159,4 +159,4 @@ wallabag_user:
159 159
160wallabag_import: 160wallabag_import:
161 allow_mimetypes: ['application/octet-stream', 'application/json', 'text/plain', 'text/csv'] 161 allow_mimetypes: ['application/octet-stream', 'application/json', 'text/plain', 'text/csv']
162 resource_dir: "%kernel.root_dir%/../web/uploads/import" 162 resource_dir: "%kernel.project_dir%/web/uploads/import"