enabled change default country

This commit is contained in:
Manuel Raynaud
2013-10-08 10:16:18 +02:00
parent d45074051e
commit 43467681fd
9 changed files with 107 additions and 8 deletions

View File

@@ -58,9 +58,9 @@ class BaseController extends ContainerAware
/**
* Return an empty response (after an ajax request, for example)
*/
protected function nullResponse()
protected function nullResponse($status = 200)
{
return new Response();
return new Response(null, $status);
}
/**