diff options
Diffstat (limited to 'apps/theming/lib/Command/UpdateConfig.php')
-rw-r--r-- | apps/theming/lib/Command/UpdateConfig.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/lib/Command/UpdateConfig.php b/apps/theming/lib/Command/UpdateConfig.php index d3131fcb58f..3a3f3f0c767 100644 --- a/apps/theming/lib/Command/UpdateConfig.php +++ b/apps/theming/lib/Command/UpdateConfig.php @@ -111,9 +111,9 @@ class UpdateConfig extends Command { $value = $this->imageManager->updateImage($key, $value); $key = $key . 'Mime'; } - + if ($key === 'color') { - $output->writeln('<warning>Using "color" is depreacted, use "primary_color" instead'); + $output->writeln('<comment>Using "color" is deprecated, use "primary_color" instead</comment>'); $key = 'primary_color'; } |