1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Allow using colon in Depends On

Test Plan: Used it.

Reviewers: epriestley

Reviewed By: epriestley

CC: tdrhq, aran, Korvin

Differential Revision: https://secure.phabricator.com/D6705
This commit is contained in:
Jakub Vrana 2013-08-08 11:43:25 -07:00
parent bca9dfa10e
commit 8c93e3c941

View file

@ -85,7 +85,7 @@ abstract class DifferentialFreeformFieldSpecification
$matches = null;
preg_match_all(
'/\b(?i:depends\s+on)\s+D(\d+(,\s+D\d++)*)\b/',
'/\b(?i:depends\s+on):?\s+D(\d+(,\s+D\d++)*)\b/',
$message,
$matches);