I read somewhere that I need to change this because the forum handles cookies differently now.
But what do I change it to? I'm getting an error in regard to that $.cookie in Firefox when trying to use the +Quote feature.
Updated it to
Problem solved.
var Cookie = {
get: function(name)
{
name = cookiePrefix + name;
return $.cookie(name);
},
But what do I change it to? I'm getting an error in regard to that $.cookie in Firefox when trying to use the +Quote feature.
Updated it to
var Cookie = {
get: function(name)
{
name = cookiePrefix + name;
return Cookies.get(name);
},
Problem solved.