id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
1091	Interwiki Links with Spaces are incorrectly parsed due to deprecated code	cygnusfear	BrianKoontz	"The following snippet of code breaks the parsing of links such as:

{{{
[[Advanced Combat Martial Arts]]
}}}

{{{
			// Case 2: Deprecated...(first part is a string
			// followed by one or more whitespaces)
			else if(preg_match(""/^(.*?)\s+([^|]+)$/s"", $contents, $matches) && 
					preg_match(""/^[A-ZÄÖÜa-zßäöü][A-Za-z0-9ÄÖÜßäöü]*$/"", $matches[1]))
			{
				$url = $matches[1]; 
				$text = $matches[2];
			}
}}}
			"	defect	closed	normal	1.3.2	unspecified	1.2	normal	invalid		
