1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Minor, fix simpleoptions parse of {F123} notation.

This commit is contained in:
epriestley 2012-02-17 16:22:02 -08:00
parent 89128a70d5
commit 8b851e4978

View file

@ -48,6 +48,7 @@ class PhabricatorRemarkupRuleEmbedFile
); );
if (!empty($matches[2])) { if (!empty($matches[2])) {
$matches[2] = trim($matches[2], ', ');
$options = PhutilSimpleOptions::parse($matches[2]) + $options; $options = PhutilSimpleOptions::parse($matches[2]) + $options;
} }