From 3de06a2b33f46ec4c9104f7afb4864ceccf8b808 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 1 Dec 2025 12:26:03 -0500 Subject: [PATCH] chore: lint happiness Signed-off-by: Josh --- lib/private/legacy/OC_Util.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/private/legacy/OC_Util.php b/lib/private/legacy/OC_Util.php index 0233cd4a523..3a509617fd8 100644 --- a/lib/private/legacy/OC_Util.php +++ b/lib/private/legacy/OC_Util.php @@ -833,9 +833,9 @@ class OC_Util { [ 'installed' => $installedVersion, 'code' => $codeVersion, 'app' => 'core', ] ); throw new \OCP\HintException(sprintf( - 'Downgrading Nextcloud from %s to %s is not supported and may corrupt your instance (database and data directory). ' . - 'Restore a full backup (code, database, and data directory) taken before the change, ' . - 'or restore the previous codebase so that it matches the installed version (version %s).', + 'Downgrading Nextcloud from %s to %s is not supported and may corrupt your instance (database and data directory). ' + . 'Restore a full backup (code, database, and data directory) taken before the change, ' + . 'or restore the previous codebase so that it matches the installed version (version %s).', $installedVersion, $codeVersion, $installedVersion )); }