// fix redirection on edit page if errors are present

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13463 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
tDidierjean
2012-02-20 14:14:39 +00:00
parent 5e5ffff0d8
commit 52d9b4c277

View File

@@ -636,9 +636,9 @@ class AdminControllerCore extends Controller
}
$this->errors = array_unique($this->errors);
if (count($this->errors) > 0)
if (!empty($this->errors))
{
// if we have errors, we stay on the form instead of moving to the list
// if we have errors, we stay on the form instead of going back to the list
$this->display = 'edit';
return false;
}
@@ -731,7 +731,12 @@ class AdminControllerCore extends Controller
}
$this->errors = array_unique($this->errors);
if (!empty($this->errors))
return;
{
// if we have errors, we stay on the form instead of going back to the list
$this->display = 'edit';
return false;
}
if (isset($object))
return $object;
return;