1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +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;
$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),
$matches,
PREG_SET_ORDER);