weight is not mandatory anymore

This commit is contained in:
Manuel Raynaud
2014-03-14 11:19:23 +01:00
parent 613aac093e
commit 0e21cb7b82
4 changed files with 9 additions and 11 deletions

View File

@@ -157,13 +157,15 @@ abstract class AbstractSeoCrudController extends AbstractCrudController
/**
* Update SEO modification, and either go back to the object list, or stay on the edition page.
*
* @return Thelia\Core\HttpFoundation\Response the response
* @return \Thelia\Core\HttpFoundation\Response the response
*/
public function processUpdateSeoAction()
{
// Check current user authorization
if (null !== $response = $this->checkAuth($this->resourceCode, array(), AccessManager::UPDATE))
if (null !== $response = $this->checkAuth($this->resourceCode, array(), AccessManager::UPDATE)) {
return $response;
}
// Error (Default: false)
$error_msg = false;