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:
parent
cdde2e6778
commit
39783472ba
1 changed files with 2 additions and 2 deletions
|
|
@ -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 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue