Closed
Bug 1080773
Opened 10 years ago
Closed 10 years ago
Users aren't being autoconfirmed
Categories
(Websites :: wiki.mozilla.org, defect, P1)
Websites
wiki.mozilla.org
Tracking
(Not tracked)
RESOLVED
FIXED
2014-Q4
People
(Reporter: ckoehler, Assigned: cliang)
References
Details
(Whiteboard: [kanban:https://kanbanize.com/ctrl_board/4/1522] [dev=2014-10-09] [stage=2014-10-09] [prod=2014-10-09])
No description provided.
Reporter | ||
Comment 1•10 years ago
|
||
When we implemented bug 1065849, we inadvertently wiped out the existing autoconfirm settings.
CURRENT VERSION:
$wgAutopromote = array(
"inactive" => array( '&',
array( APCOND_AGE, 60 * 60 * 24 * 30 * 6 ),
array( '!', array( APCOND_EDITCOUNT, 1 ) ),
),
);
NEW VERSION:
// don't wipe out existing autopromote autoconfirm
$wgAutopromote['inactive'] = array( '&',
array( APCOND_AGE, 60 * 60 * 24 * 30 * 6 ),
array( '!', array( APCOND_EDITCOUNT, 1 ) ),
);
Assignee | ||
Comment 2•10 years ago
|
||
Changes deployed and tested in the dev, staging, and production wiki environments.
Assignee: nobody → cliang
Assignee | ||
Updated•10 years ago
|
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Depends on: 1065849
Whiteboard: [kanban:https://kanbanize.com/ctrl_board/4/1522] → [kanban:https://kanbanize.com/ctrl_board/4/1522] [dev=2014-10-09] [stage=2014-10-09] [prod=2014-10-09]
Target Milestone: --- → 2014-Q4
You need to log in
before you can comment on or make changes to this bug.
Description
•