[Pkg-owncloud-commits] [owncloud] 225/258: Remove special case for css in OC.filePath

David Prévot taffit at moszumanska.debian.org
Sat Oct 11 17:22:39 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository owncloud.

commit 7479a6ebf9426270dc16da00d654ce39d6e3eb04
Author: Robin Appelman <icewind at owncloud.com>
Date:   Mon Jul 21 13:03:14 2014 +0200

    Remove special case for css in OC.filePath
---
 core/js/js.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/js/js.js b/core/js/js.js
index c359538..4154657 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -259,7 +259,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+='/';

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list