Fixed xml entities in file titles

This commit is contained in:
benweet 2013-11-03 22:24:17 +00:00
parent f11de7259e
commit 05a638794e

View File

@ -132,7 +132,7 @@ define([
if(_.size(this.publishLocations) !== 0) {
result.push('<i class="icon-share title-icon-category"></i>');
}
result.push(this.title);
result.push(_.escape(this.title));
return result.join('');
};