mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 12:30:56 +01:00
Minor fix for CelerityManagementMapWorkflow
Summary: `phutil_var_export` only accepts a single parameter. This bug was introduced in D9926. Test Plan: Eye-ball it. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9930
This commit is contained in:
parent
7ac5abb979
commit
24d4764347
1 changed files with 1 additions and 1 deletions
|
@ -351,7 +351,7 @@ final class CelerityManagementMapWorkflow
|
|||
}
|
||||
|
||||
private function formatMapContent(array $data) {
|
||||
$content = phutil_var_export($data, true);
|
||||
$content = phutil_var_export($data);
|
||||
|
||||
$generated = '@'.'generated';
|
||||
return <<<EOFILE
|
||||
|
|
Loading…
Reference in a new issue