From fecf14a1d257ee94e2e1f2bbf884d516f7800363 Mon Sep 17 00:00:00 2001 From: Romain Neutron Date: Thu, 13 Dec 2012 18:14:43 +0100 Subject: [PATCH] Fix recommandation message --- lib/classes/appbox.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/classes/appbox.class.php b/lib/classes/appbox.class.php index e8445300f9..c51d7ae355 100644 --- a/lib/classes/appbox.class.php +++ b/lib/classes/appbox.class.php @@ -418,9 +418,9 @@ class appbox extends base $upgrader->add_steps_complete(1); if (version_compare($from_version, '3.1') < 0) { - $upgrader->addRecommendation(_('Your install requires data migration, please execute the following command'), 'bin/upgrader --from=3.1'); + $upgrader->addRecommendation(_('Your install requires data migration, please execute the following command'), 'bin/console system:upgrade-datas --from=3.1'); } elseif (version_compare($from_version, '3.5') < 0) { - $upgrader->addRecommendation(_('Your install requires data migration, please execute the following command'), 'bin/upgrader --from=3.5'); + $upgrader->addRecommendation(_('Your install requires data migration, please execute the following command'), 'bin/console system:upgrade-datas --from=3.5'); } if (version_compare($from_version, '3.7') < 0) {