From 67fc59870d2930d04e302f1b9a4951cd25521d36 Mon Sep 17 00:00:00 2001 From: Olliver Schinagl Date: Mon, 20 Aug 2018 19:28:05 +0200 Subject: [PATCH] Also search in HTML formed cells IP addresses can easily be hidden in HTML formed cells. For example an IP that links to the IP via an href. As such, add the naive and basic, but fast html tag stripper from the core code. Signed-off-by: Olliver Schinagl --- sorting/ip-address.js | 1 + 1 file changed, 1 insertion(+) diff --git a/sorting/ip-address.js b/sorting/ip-address.js index 4022403..8f389de 100644 --- a/sorting/ip-address.js +++ b/sorting/ip-address.js @@ -26,6 +26,7 @@ jQuery.extend( jQuery.fn.dataTableExt.oSort, { return 0 } + a = a.replace(/<[\s\S]*?>/g, ""); m = a.split("."); n = a.split(":"); x = "";