// Add a lock on install process steps to be sure that a process can't be called if the first one isn't finished
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12916 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -35,7 +35,7 @@ function process_install(step)
|
||||
success: function(json)
|
||||
{
|
||||
// No error during this step
|
||||
if (json && json.success)
|
||||
if (json && json.success === true)
|
||||
{
|
||||
$('#process_step_'+step.key).show().addClass('success');
|
||||
current_step++;
|
||||
|
||||
Reference in New Issue
Block a user