Make history URL for category change consistent with other history links

I9cae1afa made the order of 'curid=...' and 'action=history' in the
history links for category changes inconsistent with other history links
on the changeslist.

Bug: T264491
Change-Id: I311c375d9250ab8a92bcf8e0b79af9e075487f96
This commit is contained in:
Nardog 2023-01-12 11:37:49 +09:00
parent cdde2e6778
commit 39783472ba

View file

@ -773,8 +773,8 @@ class EnhancedChangesList extends ChangesList {
new HtmlArmor( $this->message['hist'] ),
[ 'class' => 'mw-changeslist-history' ],
[
'action' => 'history',
'curid' => $rc->getAttribute( 'rc_cur_id' )
'curid' => $rc->getAttribute( 'rc_cur_id' ),
'action' => 'history'
]
);
if ( $useParentheses !== false ) {