Skip to content

Commit

Permalink
ded438d92e3b54bc95c1a2dabbaf55e372dee4bf Fix: Update HTML stripping t…
Browse files Browse the repository at this point in the history
…o use non-polynomial regex

Sync to source repo @ded438d92e3b54bc95c1a2dabbaf55e372dee4bf
  • Loading branch information
dtbuild committed Apr 9, 2024
1 parent a0d23af commit 6172084
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion datatables.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
],
"src-repo": "http://github.com/DataTables/DataTablesSrc",
"last-tag": "2.0.3",
"last-sync": "06b63b67ef3e2fc344d7b846a2316ba86030169d"
"last-sync": "ded438d92e3b54bc95c1a2dabbaf55e372dee4bf"
}
2 changes: 1 addition & 1 deletion js/dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@

var _re_dic = {};
var _re_new_lines = /[\r\n\u2028]/g;
var _re_html = /<.*?>/g;
var _re_html = /<[^>]*?>/g;

// This is not strict ISO8601 - Date.parse() is quite lax, although
// implementations differ between browsers.
Expand Down
2 changes: 1 addition & 1 deletion js/dataTables.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/dataTables.min.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/dataTables.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1043,7 +1043,7 @@ var _api_registerPlural; // DataTable.Api.registerPlural

var _re_dic = {};
var _re_new_lines = /[\r\n\u2028]/g;
var _re_html = /<.*?>/g;
var _re_html = /<[^>]*?>/g;

// This is not strict ISO8601 - Date.parse() is quite lax, although
// implementations differ between browsers.
Expand Down

0 comments on commit 6172084

Please sign in to comment.