diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-01-04 12:59:32 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-01-04 12:59:32 +0100 |
commit | bfee488c562f5302ae9665af6ff943ec809c0c2a (patch) | |
tree | cdc08d62bf33b4589938a9d1535a7d1ea5add518 /apps/files_external/js | |
parent | 157bb50a398be8a3e8ecc235068cae75e60495a6 (diff) | |
download | nextcloud-server-bfee488c562f5302ae9665af6ff943ec809c0c2a.tar.gz nextcloud-server-bfee488c562f5302ae9665af6ff943ec809c0c2a.zip |
remove unneeded 'goto' prefix from settings anchors
Diffstat (limited to 'apps/files_external/js')
-rw-r--r-- | apps/files_external/js/statusmanager.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/js/statusmanager.js b/apps/files_external/js/statusmanager.js index 4048bfc31bc..69c53a85302 100644 --- a/apps/files_external/js/statusmanager.js +++ b/apps/files_external/js/statusmanager.js @@ -177,7 +177,7 @@ OCA.External.StatusManager = { } else { OC.dialogs.confirm(t('files_external', 'There was an error with message: ') + mountData.error + '. Do you want to review mount point config in personal settings page?', t('files_external', 'External mount error'), function(e){ if(e === true) { - window.location.href = OC.generateUrl('/settings/personal#' + t('files_external', 'goto-external-storage')); + window.location.href = OC.generateUrl('/settings/personal#external-storage'); } }); } |