Page MenuHomePhabricator

Fix URL-encoding of usernames in links on Special:Ipblocklist
Closed, ResolvedPublic

Description

Author: kaikkd

Description:
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)


Version: unspecified
Severity: minor

Details

Reference
bz5511

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 9:11 PM
bzimport set Reference to bz5511.
bzimport added a subscriber: Unknown Object (MLST).

robchur wrote:

Fixed in SVN trunk, r14339.