Skip to content

Commit e7bb44a

Browse files
committed
Proper escaping of filenames and pathes. tagspaces#25
1 parent cd00d84 commit e7bb44a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data/js/perspective.manager.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ var updateFileBrowserData = function(dirList) {
196196
// Considering Unix HiddenEntries (. in the beginning of the filename)
197197
if (TSCORE.Config.getShowUnixHiddenEntries() ||
198198
(!TSCORE.Config.getShowUnixHiddenEntries() && (dirList[i].name.indexOf(".") != 0))) {
199-
filename = dirList[i].name.replace(/(<([^>]+)>)/ig,""); // sanitizing filename
200-
path = dirList[i].path.replace(/(<([^>]+)>)/ig,""); // sanitizing filepath
199+
filename = $("<html>").text(dirList[i].name).html();
200+
path = $("<html>").text(dirList[i].path).html();
201201
tags = TSCORE.TagUtils.extractTags(path);
202202
title = TSCORE.TagUtils.extractTitle(path);
203203
ext = TSCORE.TagUtils.extractFileExtension(path);

0 commit comments

Comments
 (0)