View | Details | Raw Unified | Return to bug 27378
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/js/cookieconsent.js (-2 / +1 lines)
Lines 128-134 Link Here
128
                    allCookies.forEach(function (cookie) {
128
                    allCookies.forEach(function (cookie) {
129
                        const name = cookie.split('=')[0];
129
                        const name = cookie.split('=')[0];
130
                        if (regex.test(name)) {
130
                        if (regex.test(name)) {
131
                            document.cookie = name + '=; expires=Thu, 01 Jan 1970 00: 00: 01 GMT; domain=' + cookieDomain + '; path=' + cookiePath;
131
                            document.cookie = name + '=; expires=Thu, 01 Jan 1970 00:00:01 GMT; domain=' + cookieDomain +'; path=' + cookiePath;
132
                        }
132
                        }
133
                    });
133
                    });
134
                }
134
                }
135
- 

Return to bug 27378