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

(-)a/koha-tmpl/intranet-tmpl/prog/js/basket.js (-3 / +2 lines)
Lines 25-34 if(valCookie){ Link Here
25
25
26
function writeCookie(name, val, wd) {
26
function writeCookie(name, val, wd) {
27
    if (wd) {
27
    if (wd) {
28
        parent.opener.document.cookie = name + "=" + val + "; path=/";
28
        parent.opener.document.cookie = name + "=" + val + "; SameSite=Lax; path=/";
29
    }
29
    }
30
    else {
30
    else {
31
        parent.document.cookie = name + "=" + val + "; path=/";
31
        parent.document.cookie = name + "=" + val + "; SameSite=Lax; path=/";
32
    }
32
    }
33
}
33
}
34
34
35
- 

Return to bug 26019