1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-10 14:51:06 +01:00

Test commit for T945

Resolves T945 as fixed. (Also tweaks the regexp slightly.)
This commit is contained in:
epriestley 2012-09-11 10:43:20 -07:00
parent 346747c788
commit 903f985983

View file

@ -72,7 +72,7 @@ abstract class DifferentialFreeformFieldSpecification
$matches = null; $matches = null;
$ok = preg_match_all( $ok = preg_match_all(
"/({$prefix_regex})\s+T(\d+)\s+({$suffix_regex})/i", "/({$prefix_regex})\s+T(\d+)\s*({$suffix_regex})/i",
$this->renderValueForCommitMessage($is_edit = false), $this->renderValueForCommitMessage($is_edit = false),
$matches, $matches,
PREG_SET_ORDER); PREG_SET_ORDER);