Last modified: 2006-05-22 09:43:20 UTC
in Special:Ipblocklist, if a blocked username is not ASCII string, The link to the contributions of the user is garble. This is reproduced with IE6. This cause is doesn't url-encode a username, 227c227 < $target .= ' (' . $sk->makeKnownLinkObj( Title::makeTitle( NS_SPECIAL, 'Contributions' ), $msg['contribslink'], 'target=' . $block- >mAddress ) . ')'; --- > $target .= ' (' . $sk->makeKnownLinkObj( Title::makeTitle( NS_SPECIAL, 'Contributions' ), $msg['contribslink'], 'target=' . urlencode( $block- >mAddress ) ) . ')'; Perhaps, it solve by this. (in SVN HEAD : Tue Mar 7 01:10:39 2006 UTC)
Fixed in SVN trunk, r14339.