diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-02-08 10:28:20 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-02-08 10:45:46 +0100 |
commit | 25aad470c159421ec523988e12832dcc78163f28 (patch) | |
tree | 615f1d1d4256a46321fa3f935ae841f7abe3cb2c /core/js | |
parent | 4032cc016627b5079775c268c3e28867ce234d26 (diff) | |
download | nextcloud-server-25aad470c159421ec523988e12832dcc78163f28.tar.gz nextcloud-server-25aad470c159421ec523988e12832dcc78163f28.zip |
Add message with reference to forum post
Diffstat (limited to 'core/js')
-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 7011e350de6..77ac1bb20ff 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -63,7 +63,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.')); + 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'})); } else { span.append(t('core', 'The update was unsuccessful. ' + 'Please report this issue to the ' + |