fix OC.filePath in main js
This commit is contained in:
parent
a85d49833b
commit
d6346b5b0b
|
@ -54,11 +54,16 @@ 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+'/';
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue