summaryrefslogtreecommitdiffstats
path: root/core/js/js.js
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-09-09 13:59:19 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-09-09 13:59:19 +0200
commitfd92fc7c472dfcd787dd02c2a537e86bacd1afc4 (patch)
tree77a048577fe5b109e5ffb6f634af712662245a95 /core/js/js.js
parent3d4f77c8f1f34351a8484e294b17eae4aee60a78 (diff)
parente3c99a8505da671f7721d5058ecc6ca296e87003 (diff)
downloadnextcloud-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.js2
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+='/';