Urlencode the share URL

Fixes #63
remotes/origin/stable45
Lukas Reschke 13 years ago
parent 552aee93fa
commit e65c3ef9c9
  1. 2
      core/js/share.js

@ -313,7 +313,7 @@ OC.Share={
var file = $('#dir').val() + '/' + filename;
}
file = '/'+OC.currentUser+'/files'+file;
var link = parent.location.protocol+'//'+location.host+OC.linkTo('', 'public.php')+'?service=files&'+type+'='+file;
var link = parent.location.protocol+'//'+location.host+OC.linkTo('', 'public.php')+'?service=files&'+type+'='+encodeURIComponent(file);
$('#linkText').val(link);
$('#linkText').show('blind');
$('#showPassword').show();

Loading…
Cancel
Save