[Pkg-owncloud-commits] [owncloud] 58/95: fix issue with previews not being displayed if filename contains apostrophe
David Prévot
taffit at moszumanska.debian.org
Wed Mar 11 15:49:49 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to annotated tag v8.0.1
in repository owncloud.
commit 5fef637f8710b4b38d98405375367abbde828cf9
Author: Georg Ehrke <developer at georgehrke.com>
Date: Sun Feb 22 16:51:16 2015 +0100
fix issue with previews not being displayed if filename contains apostrophe
---
apps/files/js/filelist.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index c5c665c..43b8c16 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -947,7 +947,7 @@
mime: mime,
etag: fileData.etag,
callback: function(url) {
- iconDiv.css('background-image', 'url(' + url + ')');
+ iconDiv.css('background-image', 'url("' + url + '")');
}
});
}
@@ -959,7 +959,7 @@
};
var previewUrl = this.generatePreviewUrl(urlSpec);
previewUrl = previewUrl.replace('(', '%28').replace(')', '%29');
- iconDiv.css('background-image', 'url(' + previewUrl + ')');
+ iconDiv.css('background-image', 'url("' + previewUrl + '")');
}
}
return tr;
--
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