From 4e96483cc324945bb6cf9844c5d1dd982f1368bf Mon Sep 17 00:00:00 2001 From: Daniel Klabbers Date: Thu, 21 Jan 2016 19:45:32 +0100 Subject: [PATCH] not redirecting back --- install/views/composer-installation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/views/composer-installation.html b/install/views/composer-installation.html index d5837f5..1666ab7 100644 --- a/install/views/composer-installation.html +++ b/install/views/composer-installation.html @@ -56,7 +56,7 @@ method: 'post', success: function(state) { if(state == 'true') { - location.replace(location.pathname.replace('/install/index.php', '')); + location.replace(location.pathname.replace('install/index.php', '')); } else if(statusElement.text() != state) { statusElement.text(state); }