Index: modules/comment/comment.js =================================================================== RCS file: /cvs/drupal/drupal/modules/comment/comment.js,v retrieving revision 1.1 diff -u -F^f -r1.1 comment.js --- modules/comment/comment.js 17 May 2007 21:05:38 -0000 1.1 +++ modules/comment/comment.js 18 May 2007 13:15:19 -0000 @@ -26,7 +26,7 @@ if (end == -1) { end = document.cookie.length; } - returnValue = unescape(document.cookie.substring(offset, end)); + returnValue = decodeURIComponent(document.cookie.substring(offset, end)); } }