Revert the addition of + which was a leftover from debugging

This commit is contained in:
Sebastiaan Janssen
2018-12-06 16:58:12 +01:00
committed by GitHub
parent 67f9d9d665
commit ebcf011287

View File

@@ -53,7 +53,7 @@ namespace Umbraco.Core
.Reverse()
.ToArray();
return nodeIds;
}
}
/// <summary>
/// Removes new lines and tabs
@@ -190,7 +190,7 @@ namespace Umbraco.Core
return new string(outputArray);
}
private static readonly char[] CleanForXssChars = "*?(){}[];:%<>/\\|&'+\"".ToCharArray();
private static readonly char[] CleanForXssChars = "*?(){}[];:%<>/\\|&'\"".ToCharArray();
/// <summary>
/// Cleans string to aid in preventing xss attacks.