+ is restricted as well.

This commit is contained in:
Mattias Põldaru 2012-03-13 12:08:24 +02:00
parent c599a1785d
commit f8a559c633
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ window.OpenLP = {
}, },
escapeString: function (string) { escapeString: function (string) {
return string.replace(/\\/g, "\\\\").replace(/"/g, "\\\"").replace( return string.replace(/\\/g, "\\\\").replace(/"/g, "\\\"").replace(
/#/g, "%23").replace(/;/g, "%3B") /#/g, "%23").replace(/;/g, "%3B").replace(/\+/g, "%2B")
} }
} }
// Service Manager // Service Manager