Merge branch 'g5'

This commit is contained in:
chicpro
2015-01-07 13:59:02 +09:00

View File

@ -187,7 +187,7 @@ function get_cookie(name)
if(end < start) if(end < start)
end = document.cookie.length; end = document.cookie.length;
return document.cookie.substring(start, end); return unescape(document.cookie.substring(start, end));
} }
return ""; return "";
} }