From 3cde7ea9cd6d72dc5878ffef436f19744a4b3566 Mon Sep 17 00:00:00 2001 From: rMalie Date: Mon, 13 Feb 2012 10:37:45 +0000 Subject: [PATCH] // Installer redirect to configure page instead on home page when PS is already installed git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13248 b9a71923-0436-4b27-9f14-aed3839534dd --- install-dev/controllers/http/process.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-dev/controllers/http/process.php b/install-dev/controllers/http/process.php index e23b54156..bb7c23935 100644 --- a/install-dev/controllers/http/process.php +++ b/install-dev/controllers/http/process.php @@ -106,8 +106,8 @@ class InstallControllerHttpProcess extends InstallControllerHttp $this->session->process_validated = array(); else if (!Tools::getValue('submitNext')) { - unset($this->session->step); - unset($this->session->last_step); + $this->session->step = 'configure'; + $this->session->last_step = 'configure'; Tools::redirect('index.php'); } }