diff --git a/.datatables-commit-sync b/.datatables-commit-sync index c88a4cf1..46d0ac20 100644 --- a/.datatables-commit-sync +++ b/.datatables-commit-sync @@ -1 +1 @@ -dfdf6371182e92cc53cdac96a01ae9316c30702b +a7e482203d8a79d537f2bcffba763f852af12ce3 diff --git a/media/js/jquery.dataTables.js b/media/js/jquery.dataTables.js index 47ae52f6..11fc4215 100644 --- a/media/js/jquery.dataTables.js +++ b/media/js/jquery.dataTables.js @@ -1091,7 +1091,10 @@ } ); return function (data, type, extra) { - return o[ o[type] !== undefined ? type : '_' ](data, type, extra); + var t = o[type] || o._; + return t !== undefined ? + t(data, type, extra) : + data; }; } else if ( mSource === null )