1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 14:52:40 +01:00

Merge pull request #37 from phleet/immutable-history-config-from-any-source

Use getConfigFromAnySource when checking for immutable_history
This commit is contained in:
Evan Priestley 2012-06-11 07:20:18 -07:00
commit c4cb7abd9a

View file

@ -1036,7 +1036,7 @@ abstract class ArcanistBaseWorkflow {
$repository_api = $this->getRepositoryAPI(); $repository_api = $this->getRepositoryAPI();
$working_copy = $this->getWorkingCopy(); $working_copy = $this->getWorkingCopy();
$project_config = $working_copy->getConfig('immutable_history'); $project_config = $working_copy->getConfigFromAnySource('immutable_history');
if ($project_config !== null) { if ($project_config !== null) {
return $project_config; return $project_config;
} }