Page MenuHomePhabricator

External title blacklists via URL are not considered
Open, Needs TriagePublic

Description

Wiki

Setup

  • PHP 5.4.45
  • MW 1.25.5
  • Title Blacklist 1.5.0 (35ca74c)

Configuration

## TitleBlacklist
wfLoadExtension( 'TitleBlacklist' );
$wgTitleBlacklistSources = array(
	array(
		'type' => 'localpage',
		'src'  => 'MediaWiki:Titleblacklist',
		),
	array(
		'type' => 'url',
		'src'  => 'https://www.mediawiki.org/w/index.php?title=MediaWiki:Titleblacklist&action=raw',
		),
	array(
		'type' => 'url',
		'src'  => 'https://meta.wikimedia.org/w/index.php?title=Title_blacklist&action=raw',
		),
	);

With the above setup and configuration only the regexes on the local wiki page get honoured. All other titles get created. The servers error log is empty.