From 98e7218cf5ebafe2df38538356e2c8e8e6f00b93 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Wed, 25 Aug 2021 09:58:35 +0300 Subject: [PATCH] fix --- application/Espo/Core/Console/Commands/Extension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Core/Console/Commands/Extension.php b/application/Espo/Core/Console/Commands/Extension.php index ed6e783cd8..61e4b459ef 100644 --- a/application/Espo/Core/Console/Commands/Extension.php +++ b/application/Espo/Core/Console/Commands/Extension.php @@ -264,7 +264,7 @@ class Extension implements Command $io->writeLine(' Name:' . $extension->get('name')); $io->writeLine(' ID: ' . $extension->getId()); - $io->writeLine(' Installed: ' . $isInstalled ? 'yes' : 'no'); + $io->writeLine(' Installed: ' . ($isInstalled ? 'yes' : 'no')); $io->writeLine(""); }