aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-05-24 13:54:57 +0200
committerGitHub <noreply@github.com>2017-05-24 13:54:57 +0200
commit82a590fdddcb2458fc7f79d300cc12be3500b09c (patch)
tree5ce2970eae8b3ec34888d3d70bcbd3bfaaf4f76d
parentf87e6547e8c49a2fe4bd21ec185e99464d4d957e (diff)
parentac1509a66b510648ba6dd378c3d487802cf652b9 (diff)
downloadwallabag-82a590fdddcb2458fc7f79d300cc12be3500b09c.tar.gz
wallabag-82a590fdddcb2458fc7f79d300cc12be3500b09c.tar.zst
wallabag-82a590fdddcb2458fc7f79d300cc12be3500b09c.zip
Merge pull request #3146 from DamienCassou/fix-doc-url
Fix documentation URL for "How can I help to fix that?"
-rw-r--r--app/config/config.yml2
-rw-r--r--tests/Wallabag/CoreBundle/Helper/ContentProxyTest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/config/config.yml b/app/config/config.yml
index 584b0da2..77cda052 100644
--- a/app/config/config.yml
+++ b/app/config/config.yml
@@ -54,7 +54,7 @@ wallabag_core:
54 action_mark_as_read: 1 54 action_mark_as_read: 1
55 list_mode: 1 55 list_mode: 1
56 fetching_error_message: | 56 fetching_error_message: |
57 wallabag can't retrieve contents for this article. Please <a href="http://doc.wallabag.org/en/master/user/errors_during_fetching.html#how-can-i-help-to-fix-that">troubleshoot this issue</a>. 57 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>.
58 58
59wallabag_user: 59wallabag_user:
60 registration_enabled: "%fosuser_registration%" 60 registration_enabled: "%fosuser_registration%"
diff --git a/tests/Wallabag/CoreBundle/Helper/ContentProxyTest.php b/tests/Wallabag/CoreBundle/Helper/ContentProxyTest.php
index 5956b502..4f70ed0c 100644
--- a/tests/Wallabag/CoreBundle/Helper/ContentProxyTest.php
+++ b/tests/Wallabag/CoreBundle/Helper/ContentProxyTest.php
@@ -10,7 +10,7 @@ use Wallabag\UserBundle\Entity\User;
10 10
11class ContentProxyTest extends \PHPUnit_Framework_TestCase 11class ContentProxyTest extends \PHPUnit_Framework_TestCase
12{ 12{
13 private $fetchingErrorMessage = 'wallabag can\'t retrieve contents for this article. Please <a href="http://doc.wallabag.org/en/master/user/errors_during_fetching.html#how-can-i-help-to-fix-that">troubleshoot this issue</a>.'; 13 private $fetchingErrorMessage = '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>.';
14 14
15 public function testWithBadUrl() 15 public function testWithBadUrl()
16 { 16 {