mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-24 00:04:15 +00:00
40fb527c59
It relies on PNG mode of Math extension which has been removed since I595926027433182cc03 Bug: T360978 Change-Id: I650d096dfd83c725e30242eb5795236c59fe7883
17 lines
279 B
PHP
17 lines
279 B
PHP
<?php
|
|
|
|
$cfg = require __DIR__ . '/../vendor/mediawiki/mediawiki-phan-config/src/config.php';
|
|
|
|
$cfg['directory_list'] = array_merge(
|
|
$cfg['directory_list'],
|
|
[
|
|
'FancyCaptcha/',
|
|
'hCaptcha/',
|
|
'QuestyCaptcha/',
|
|
'ReCaptchaNoCaptcha/',
|
|
'SimpleCaptcha/',
|
|
]
|
|
);
|
|
|
|
return $cfg;
|