Austrian Economics Wiki talk:Autoconfirmed users: Difference between revisions
Appearance
Created page with "==The settings from Special:ViewFiles== In case anyone was wondering: <source lang="php"> $wgAutoConfirmAge = 3600 * 24; // one day $wgAutoConfirmCount = 1; // 1 edit (poi..." |
DavidVeksler (talk | contribs) m Contributor de-identification |
||
| Line 16: | Line 16: | ||
); | ); | ||
</source> | </source> | ||
[[User: | [[User:FormerContributor-78162cb3|FormerContributor-78162cb3]] ([[User talk:FormerContributor-78162cb3|talk]]) 12:32, 28 December 2013 (MSK) | ||
Latest revision as of 07:05, 23 July 2026
The settings from Special:ViewFiles
In case anyone was wondering:
$wgAutoConfirmAge = 3600 * 24; // one day
$wgAutoConfirmCount = 1; // 1 edit (pointless to set it higher)
// Cause autopromotion at 24 hours from first edit, rather than from
// account creation. This gives an opportunity to review that first
// edit and make sure it's not spammy, before he gets exempted from
// CAPTCHAs.
$wgAutopromote = array(
"autoconfirmed" => array( "&",
array( APCOND_EDITCOUNT, &$wgAutoConfirmCount ),
array( APCOND_AGE_FROM_EDIT, &$wgAutoConfirmAge ),
),
);
FormerContributor-78162cb3 (talk) 12:32, 28 December 2013 (MSK)