From f1462e32cfb9b5680795c95b82f5c4ddec36b851 Mon Sep 17 00:00:00 2001 From: dooleymatt Date: Thu, 6 Oct 2016 21:34:33 -0400 Subject: [PATCH] Updates setSimpleSamlPhpEnabled method in BltDoctorCommand. --- src/Drush/Command/BltDoctorCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Drush/Command/BltDoctorCommand.php b/src/Drush/Command/BltDoctorCommand.php index 3bba14b0a..af90ae10a 100644 --- a/src/Drush/Command/BltDoctorCommand.php +++ b/src/Drush/Command/BltDoctorCommand.php @@ -162,7 +162,7 @@ protected function setCiEnabled() { * Sets SimpleSAMLphp enabled status. */ protected function setSimpleSamlPhpEnabled() { - if (file_exists($this->repoRoot . '/vendor/acquia/blt/settings/simplesamlphp.settings.php')) { + if ($this->config['simplesamlphp']) { $this->SimpleSamlPhpEnabled = TRUE; } }