diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-01-09 18:38:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-09 18:38:25 +0100 |
commit | ea8617fc8ffa8f219f8bc45e58454121152c9c9f (patch) | |
tree | a313907b147db5aa97280afa41940690de4881d3 | |
parent | 639391717d1db3ecd13dc516470d186bc7b1e97e (diff) | |
parent | 564740d2d43599dc462022987d0786c112ce6660 (diff) | |
download | nextcloud-server-ea8617fc8ffa8f219f8bc45e58454121152c9c9f.tar.gz nextcloud-server-ea8617fc8ffa8f219f8bc45e58454121152c9c9f.zip |
Merge pull request #2988 from nextcloud/backport-2933-dont-link-to-oc-forum
[stable11] Don't link to the oC forum
-rw-r--r-- | core/js/update.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/update.js b/core/js/update.js index 32cf2ce5ecc..e849d8a16ce 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -72,7 +72,7 @@ var span = $('<span>') .addClass('bold'); if(message === 'Exception: Updates between multiple major versions and downgrades are unsupported.') { - span.append(t('core', 'The update was unsuccessful. For more information <a href="{url}">check our forum post</a> covering this issue.', {'url': 'https://forum.owncloud.org/viewtopic.php?f=17&t=32087'})); + span.append(t('core', 'The update was unsuccessful. For more information <a href="{url}">check our forum post</a> covering this issue.', {'url': 'https://help.nextcloud.com/t/updates-between-multiple-major-versions-are-unsupported/7094'})); } else { span.append(t('core', 'The update was unsuccessful. ' + 'Please report this issue to the ' + |