in reply to Re^5: A new chatterbox flavour
in thread A new chatterbox flavour

There are more doubly encoded characters than just that one. PM's cookie is weird… In any case, I did this to fix it instead:

--- pmchatter.html.old 2004-12-20 02:49:00.000000000 +0100 +++ pmchatter.html 2004-12-20 02:49:03.000000000 +0100 @@ -34,3 +34,3 @@ - try{ cookie.parse( this.req.getResponseHeader( 'Set-Co +okie' ) ); } + try{ decodeURIComponent( cookie.parse( this.req.getRes +ponseHeader( 'Set-Cookie' ) ) ); } catch( e ) { }

Makeshifts last the longest.