Skip to content

Commit

Permalink
Fix: Remove incorrect argument count on internal filtering call
Browse files Browse the repository at this point in the history
Relates to #210
  • Loading branch information
AllanJard committed Mar 20, 2023
1 parent f1170ec commit 7191c90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/core/core.filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,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 7191c90

Please sign in to comment.