T74055 Changing user groups and user group rights on the Hungarian Wikipedia (original) (raw)

Comment Actions

I forgot that

  1. Please add the templateeditor right to sysop user group (able to edit the templateeditor protection level). ----

I am not an expert at all, but I tried to prepare the changes in the configuration files.

The change in flaggedrevs.php maybe looks like this:

unset( $wgGroupPermissions['autoreview'] ); // bug 72055

The change in initialiseSettings.php is probably something like this:

'+huwiki' => array(

    'bureaucrat' => array( 'templateeditor' ), // bug 72055

),

'+huwiki' => array(

    'bureaucrat' => array( 'sysop', 'bureaucrat', 'templateeditor' ), // bug 72055

),

'huwiki' => array( '', 'autoconfirmed', 'templateeditor', 'sysop', 'superprotect' ), // bug 72055

'huwiki' => array(

    'editor' => array( 'noratelimit' => true ),
    'sysop' => array(
        'deleterevision' => true,
        'templateeditor' => true, // bug 72055
    ),
    'user' => array( 'upload' => true ), // bug 28576
    'templateeditor' => array( 'templateeditor' => true ), // bug 72055

),

Please let me know if you had any question.