Merge pull request #531 from IServ-GmbH/fix-ip-sorting

Fix IP address sorting when there are empty entries in the table
pull/532/head
Allan Jardine 3 years ago committed by GitHub
commit fc25f864c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,7 +25,7 @@ jQuery.extend( jQuery.fn.dataTableExt.oSort, {
var x, xa;
if (!a) {
return 0
return '000000000000';
}
a = a.replace(/<[\s\S]*?>/g, "");

Loading…
Cancel
Save