summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2022-10-21 09:26:17 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2022-11-18 22:24:59 +0100
commit9bdf4c2254a2334558c3e543840b659e6eee48c8 (patch)
tree3cfb22b38d29024e622bc8a0657b163d5c0cb9a1 /apps
parenta2bce2c6fc1c26cf8820797a9dd9f1412d65117f (diff)
downloadnextcloud-server-9bdf4c2254a2334558c3e543840b659e6eee48c8.tar.gz
nextcloud-server-9bdf4c2254a2334558c3e543840b659e6eee48c8.zip
use const
Co-authored-by: Pytal <24800714+Pytal@users.noreply.github.com> Signed-off-by: blizzz <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps')
-rw-r--r--apps/theming/lib/Jobs/MigrateBackgroundImages.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Jobs/MigrateBackgroundImages.php b/apps/theming/lib/Jobs/MigrateBackgroundImages.php
index b0e21de4909..69374aa694a 100644
--- a/apps/theming/lib/Jobs/MigrateBackgroundImages.php
+++ b/apps/theming/lib/Jobs/MigrateBackgroundImages.php
@@ -71,7 +71,7 @@ class MigrateBackgroundImages extends QueuedJob {
protected function run($argument): void {
if (!isset($argument['stage'])) {
// not executed in 25.0.0?!
- $argument['stage'] = 'prepare';
+ $argument['stage'] = self::STAGE_PREPARE;
}
switch ($argument['stage']) {