From: Georg Ehrke Date: Tue, 24 Apr 2012 19:54:09 +0000 (+0200) Subject: fix OC.filePath in main js X-Git-Tag: v4.0.0beta~168^2~22 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d6346b5b0bece4feecc36b7b97308dd3a5a4d6cc;p=nextcloud-server.git fix OC.filePath in main js --- diff --git a/core/js/js.js b/core/js/js.js index 25de7c13b74..a4369deb283 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -54,15 +54,20 @@ OC={ var isCore=OC.coreApps.indexOf(app)!=-1; var link=OC.webroot; if(file.substring(file.length-3) == 'php' && !isCore){ - link+='/?app=' + app + '&getfile=' + encodeURI(type + '/' + file); + link+='/?app=' + app + '&getfile='; + if(type){ + link+=encodeURI(type + '/'); + } + link+= file; }else if(file.substring(file.length-3) != 'php' && !isCore){ link=OC.appswebroot; + link+='/'; link+='apps/'; - link+=app; + link+=app+'/'; if(type){ link+=type+'/'; } - link+=file; + link+=file; }else{ link+='/'; app+='/';