Skip to content

Commit

Permalink
7191c90f7134d1bccc6e5fcdbaab9998eec6e148 Fix: Remove incorrect argume…
Browse files Browse the repository at this point in the history
…nt count on internal filtering call

Relates to DataTables/DataTablesSrc#210

df587f100c1f32013a0e07ccb8f96dea99e1cc3b Merge branch 'master' of github.com:DataTables/DataTablesSrc

Sync to source repo @df587f100c1f32013a0e07ccb8f96dea99e1cc3b
  • Loading branch information
AllanJard committed Mar 20, 2023
1 parent c0f089e commit 478ca51
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": "1.13.4",
"last-sync": "3e3b2a54a8513842de4874480983ceca238410b5"
"last-sync": "df587f100c1f32013a0e07ccb8f96dea99e1cc3b"
}
2 changes: 1 addition & 1 deletion js/jquery.dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -4397,7 +4397,7 @@
if ( _fnDataSource( oSettings ) != 'ssp' )
{
/* Global filter */
_fnFilter( oSettings, oInput.sSearch, iForce, fnRegex(oInput), oInput.bSmart, oInput.bCaseInsensitive, oInput.return );
_fnFilter( oSettings, oInput.sSearch, iForce, fnRegex(oInput), oInput.bSmart, oInput.bCaseInsensitive );
fnSaveFilter( oInput );

/* Now do the individual column filter */
Expand Down
2 changes: 1 addition & 1 deletion js/jquery.dataTables.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/jquery.dataTables.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4340,7 +4340,7 @@ function _fnFilterComplete ( oSettings, oInput, iForce )
if ( _fnDataSource( oSettings ) != 'ssp' )
{
/* Global filter */
_fnFilter( oSettings, oInput.sSearch, iForce, fnRegex(oInput), oInput.bSmart, oInput.bCaseInsensitive, oInput.return );
_fnFilter( oSettings, oInput.sSearch, iForce, fnRegex(oInput), oInput.bSmart, oInput.bCaseInsensitive );
fnSaveFilter( oInput );

/* Now do the individual column filter */
Expand Down

0 comments on commit 478ca51

Please sign in to comment.