diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-09 13:59:19 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-09 13:59:19 +0200 |
commit | fd92fc7c472dfcd787dd02c2a537e86bacd1afc4 (patch) | |
tree | 77a048577fe5b109e5ffb6f634af712662245a95 /core/js/js.js | |
parent | 3d4f77c8f1f34351a8484e294b17eae4aee60a78 (diff) | |
parent | e3c99a8505da671f7721d5058ecc6ca296e87003 (diff) | |
download | nextcloud-server-fd92fc7c472dfcd787dd02c2a537e86bacd1afc4.tar.gz nextcloud-server-fd92fc7c472dfcd787dd02c2a537e86bacd1afc4.zip |
Merge pull request #9753 from owncloud/filepath-css
Remove special case for css in OC.filePath
Diffstat (limited to 'core/js/js.js')
-rw-r--r-- | core/js/js.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js index bf33e3f2e48..89682e3013f 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -260,7 +260,7 @@ var OC={ filePath:function(app,type,file){ var isCore=OC.coreApps.indexOf(app)!==-1, link=OC.webroot; - if((file.substring(file.length-3) === 'php' || file.substring(file.length-3) === 'css') && !isCore){ + if(file.substring(file.length-3) === 'php' && !isCore){ link+='/index.php/apps/' + app; if (file != 'index.php') { link+='/'; |