summaryrefslogtreecommitdiffstats
path: root/apps/user_migrate
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-06-07 13:08:42 +0200
committerThomas Tanghus <thomas@tanghus.net>2012-06-07 13:08:42 +0200
commit312536dbf951a72ff849cdd57138eded6c4668e6 (patch)
treedb5d71f3a857124b047564df0ae14b2c0ef119a0 /apps/user_migrate
parente1f4978150a836ac9c7b2cb71e875fce32759b3f (diff)
downloadnextcloud-server-312536dbf951a72ff849cdd57138eded6c4668e6.tar.gz
nextcloud-server-312536dbf951a72ff849cdd57138eded6c4668e6.zip
Migration: Fixed wrong download URL: http://forum.owncloud.org/viewtopic.php?f=4&t=2511
Diffstat (limited to 'apps/user_migrate')
-rw-r--r--apps/user_migrate/js/export.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_migrate/js/export.js b/apps/user_migrate/js/export.js
index 2d660b2de6b..aef45c45a7b 100644
--- a/apps/user_migrate/js/export.js
+++ b/apps/user_migrate/js/export.js
@@ -9,7 +9,7 @@ $(document).ready(function(){
function(result){
if(result.status == 'success'){
// Download the file
- window.location = OC.filePath('user_migrate','ajax','export.php?operation=download') ;
+ window.location = OC.linkTo('user_migrate','ajax/export.php') + '?operation=download';
$('.loading').hide();
$('#exportbtn').val(t('user_migrate', 'Export'));
} else {