We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c4335e2 + 62c27f0 commit 060acc6Copy full SHA for 060acc6
2 files changed
src/Roundcube/Composer/PluginInstaller.php
@@ -23,7 +23,7 @@ protected function confirmInstall($package_name)
23
{
24
$config = $this->composer->getConfig()->get('roundcube');
25
26
- if (!empty($config['enable-plugin'])) {
+ if (isset($config['enable-plugin'])) {
27
$answer = $config['enable-plugin'];
28
}
29
else {
src/Roundcube/Composer/SkinInstaller.php
- if (!empty($config['enable-skin'])) {
+ if (isset($config['enable-skin'])) {
$answer = $config['enable-skin'];
0 commit comments