From b105457a0a4a623bd42b66153f23f78ec59c7632 Mon Sep 17 00:00:00 2001 From: Bastian Allgeier Date: Tue, 27 Feb 2024 13:21:42 +0100 Subject: [PATCH] Better upgrade warning text --- commands/upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/upgrade.php b/commands/upgrade.php index e12c2a7..f51db69 100644 --- a/commands/upgrade.php +++ b/commands/upgrade.php @@ -34,7 +34,7 @@ // checks current kirby version and prevents downgrade if (version_compare($kirby->version(), $version, '>') === true) { - throw new Exception('Current Kirby version is higher than the version you are trying to upgrade to'); + throw new Exception('Your current Kirby version is higher than the version you are trying to upgrade to'); } // confirms the process when major version upgrade available