mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-12-24 18:17:53 +01:00
Fixed #313
This commit is contained in:
parent
b36712113f
commit
d27b71e112
@ -4,7 +4,6 @@ import main.java.com.djrapitops.plan.Plan;
|
||||
import main.java.com.djrapitops.plan.Settings;
|
||||
import main.java.com.djrapitops.plan.systems.webserver.WebServer;
|
||||
import main.java.com.djrapitops.plan.utilities.MiscUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.commons.lang3.text.StrSubstitutor;
|
||||
|
||||
import java.io.Serializable;
|
||||
@ -68,7 +67,7 @@ public class HtmlUtils {
|
||||
* @return
|
||||
*/
|
||||
public static String removeXSS(String string) {
|
||||
return StringUtils.removeAll(string, "(<!--)|(-->)|(</?script>)");
|
||||
return string.replace("<!--", "").replace("-->", "").replace("</script>", "");
|
||||
}
|
||||
|
||||
/**
|
||||
@ -89,7 +88,7 @@ public class HtmlUtils {
|
||||
string = Html.SPAN.parse(string);
|
||||
}
|
||||
|
||||
return StringUtils.remove(string, "§r");
|
||||
return string.replace("§r", "");
|
||||
}
|
||||
|
||||
public static String separateWithQuotes(String... strings) {
|
||||
|
Loading…
Reference in New Issue
Block a user