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

(-)a/koha-tmpl/opac-tmpl/bootstrap/js/basket.js (-3 / +2 lines)
Lines 19-28 function basketCount(){ Link Here
19
19
20
function writeCookie(name, val, wd) {
20
function writeCookie(name, val, wd) {
21
    if (wd) {
21
    if (wd) {
22
        parent.opener.document.cookie = name + "=" + val;
22
        parent.opener.document.cookie = name + "=" + val + ";path=/";
23
    }
23
    }
24
    else {
24
    else {
25
        parent.document.cookie = name + "=" + val;
25
        parent.document.cookie = name + "=" + val + ";path=/";
26
    }
26
    }
27
}
27
}
28
28
29
- 

Return to bug 19702