Jump to content

Austrian Economics Wiki talk:Autoconfirmed users: Difference between revisions

From The Austrian Economics Wiki, the global repository of classical-liberal thought
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..."
 
m Contributor de-identification
 
Line 16: Line 16:
);
);
</source>
</source>
[[User:Nathan Larson|Nathan Larson]] ([[User talk:Nathan Larson|talk]]) 12:32, 28 December 2013 (MSK)
[[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)