]> git.openstreetmap.org Git - chef.git/blob - cookbooks/mediawiki/templates/default/mw-ext-ConfirmEdit.inc.php.erb
Remove ssl_enabled option for mediawiki sites
[chef.git] / cookbooks / mediawiki / templates / default / mw-ext-ConfirmEdit.inc.php.erb
1 <?php
2 # DO NOT EDIT - This file is being maintained by Chef
3 wfLoadExtensions( array( 'ConfirmEdit', 'ConfirmEdit/ReCaptchaNoCaptcha' ) );
4 $wgCaptchaClass = 'ReCaptchaNoCaptcha';
5 $wgReCaptchaSendRemoteIP = true;
6 $wgReCaptchaSiteKey = '<%= @public_key %>';
7 $wgReCaptchaSecretKey = '<%= @private_key %>';
8
9 $wgCaptchaTriggers['addurl'] = true;
10 $wgCaptchaTriggers['create'] = true;
11
12 $wgGroupPermissions['autoconfirmed']['skipcaptcha'] = true;