@@ -, +, @@ -> The basket will display as empty -> Basket will display correctly --- koha-tmpl/opac-tmpl/bootstrap/js/basket.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/js/basket.js +++ a/koha-tmpl/opac-tmpl/bootstrap/js/basket.js @@ -19,10 +19,10 @@ function basketCount(){ function writeCookie(name, val, wd) { if (wd) { - parent.opener.document.cookie = name + "=" + val; + parent.opener.document.cookie = name + "=" + val + ";path=/"; } else { - parent.document.cookie = name + "=" + val; + parent.document.cookie = name + "=" + val + ";path=/"; } } --