mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 14:43:49 +00:00
force using strict type on comparison
This commit is contained in:
@@ -334,7 +334,7 @@ class ReportController extends AbstractController
|
||||
|
||||
$cFGroupId = $request->query->get('cFGroup');
|
||||
|
||||
if ($cFGroupId) {
|
||||
if ($request->query->has('cFGroup')) {
|
||||
return $this->redirect(
|
||||
$this->generateUrl(
|
||||
'report_new',
|
||||
@@ -391,7 +391,7 @@ class ReportController extends AbstractController
|
||||
{
|
||||
$cFGroupId = $request->query->get('cFGroup');
|
||||
|
||||
if ($cFGroupId) {
|
||||
if ($request->query->has('cFGroup')) {
|
||||
return $this->redirect(
|
||||
$this->generateUrl(
|
||||
'report_export_list',
|
||||
|
Reference in New Issue
Block a user