Page MenuHomePhabricator

Change the 'userrights' requirement by 'passwordreset' in the PasswordReset extension
Closed, ResolvedPublic

Description

The file for PasswordReset_body.php

To use the PasswordReset extension, you need the right 'userrights' (bureaucrats by default).
Please replace the 'userrights' right by the 'passwordreset' right because with the new $wgAddGroups and $wgRemoveGroups it is possible that users who should not have access to Special:PasswordReset, can have access to it.

See the attachment for the changed PasswordReset_body.php file, and also the extension credits in PasswordReset.php has to be changed:
'description'=>"Resets Wiki user's passwords - requires 'userrights' privileges",
'version'=>'1.1'
to
'description'=>"Resets Wiki user's passwords - requires 'passwordreset' privileges",
'version'=>'1.2'

Thank you, [[meta:User:SPQRobin]]


Version: unspecified
Severity: enhancement

attachment PasswordReset_body.php ignored as obsolete

Details

Reference
bz11914

Event Timeline

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

Created attachment 4318
The file for PasswordReset_body.php (new)

I saw 'wfMsgForContent' was used, while it's much better to use 'wfMsg', so I changed that in this new attachment.

Attached: