зеркало из https://github.com/nextcloud/server.git
prevent xss attacks by manipulating image file names
This commit is contained in:
Родитель
1d6ca084a6
Коммит
f291a843bf
|
@ -25,7 +25,7 @@ function viewImage(dir, file) {
|
|||
var location=OC.filePath('files','ajax','download.php')+'?files='+file+'&dir='+dir;
|
||||
$.fancybox({
|
||||
"href": location,
|
||||
"title": file,
|
||||
"title": file.replace(/</, "<").replace(/>/, ">"),
|
||||
"titlePosition": "inside"
|
||||
});
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче