@@ -, +, @@ --- .../lib/jquery/plugins/dataTables.keepConditions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/dataTables.keepConditions.js +++ a/koha-tmpl/intranet-tmpl/lib/jquery/plugins/dataTables.keepConditions.js @@ -1531,7 +1531,7 @@ var KeepConditions = (function () { action: function action(e, dt, node, config) { var dtLanguage = dt.settings()[0].oLanguage.keepConditions, conditionsHash = dt.settings()[0].oKeepConditions.structureHash(true), - copyThis = document.location.protocol + '//' + document.location.host + (document.location.port.length ? ':' + document.location.port : '') + document.location.pathname + '#' + conditionsHash, + copyThis = document.location.protocol + '//' + document.location.host + document.location.pathname + '#' + conditionsHash, success, language = { btnNoHashTitle: dtLanguage.btnNoHashTitle || 'No Conditions', @@ -1581,4 +1581,4 @@ var KeepConditions = (function () { } } }; -})(window, document, jQuery); +})(window, document, jQuery); --