summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/js
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2015-01-05 11:50:05 +0100
committerMorris Jobke <hey@morrisjobke.de>2015-01-05 11:50:05 +0100
commit28c8f5a0f9c79229a24af3f8a95bef0f8f43da09 (patch)
treea005f14cfc3846e2cd43aa1826bc683c583eaddb /apps/files_sharing/js
parenta0023974e3c1127cfcc9b2f42aecc5825329e3e9 (diff)
downloadnextcloud-server-28c8f5a0f9c79229a24af3f8a95bef0f8f43da09.tar.gz
nextcloud-server-28c8f5a0f9c79229a24af3f8a95bef0f8f43da09.zip
Check for version before mounting a public link
* ownCloud 7.0.0 is needed - version of merge of server <-> server sharing - https://github.com/owncloud/core/pull/8399 * adjust error message
Diffstat (limited to 'apps/files_sharing/js')
-rw-r--r--apps/files_sharing/js/public.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js
index 861da2065ea..02ecf56fa09 100644
--- a/apps/files_sharing/js/public.js
+++ b/apps/files_sharing/js/public.js
@@ -217,7 +217,7 @@ OCA.Sharing.PublicApp = {
// this check needs to happen on the server due to the Content Security Policy directive
$.get(OC.generateUrl('apps/files_sharing/testremote'), {remote: remote}).then(function (protocol) {
if (protocol !== 'http' && protocol !== 'https') {
- OC.dialogs.alert(t('files_sharing', 'No ownCloud installation found at {remote}', {remote: remote}),
+ OC.dialogs.alert(t('files_sharing', 'No ownCloud installation (7 or higher) found at {remote}', {remote: remote}),
t('files_sharing', 'Invalid ownCloud url'));
} else {
OC.redirect(protocol + '://' + url);