aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming/lib/Command
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2024-06-19 15:44:21 +0200
committerRichard Steinmetz <richard@steinmetz.cloud>2024-06-19 15:50:06 +0200
commit9c930146a53d843490d536ac95cb0160c41b291e (patch)
treee967eddb63bc8fb4beddc098f9a613fbf034a27c /apps/theming/lib/Command
parent42fa0072046b3258062b50dbbd29110adefa1d71 (diff)
downloadnextcloud-server-9c930146a53d843490d536ac95cb0160c41b291e.tar.gz
nextcloud-server-9c930146a53d843490d536ac95cb0160c41b291e.zip
fix(theming): properly apply warning style to update output
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'apps/theming/lib/Command')
-rw-r--r--apps/theming/lib/Command/UpdateConfig.php4
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';
}