From cdbb6dc62652adfe754fa894720efef4758fb311 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 22 Mar 2007 07:46:49 +0100 Subject: [PATCH] add debug msg to setCookie --- functions.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions.js b/functions.js index b6c656b6..1172a49f 100644 --- a/functions.js +++ b/functions.js @@ -430,6 +430,8 @@ function setCookie(name, value, lifetime, path, domain, secure) { d = new Date(); d.setTime(d.getTime() + (lifetime * 1000)); } + + debug("setCookie: " + name + " => " + value + ": " + d); int_setCookie(name, value, d, path, domain, secure); -- 2.39.2