mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-04 20:39:40 +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');
|
$cFGroupId = $request->query->get('cFGroup');
|
||||||
|
|
||||||
if ($cFGroupId) {
|
if ($request->query->has('cFGroup')) {
|
||||||
return $this->redirect(
|
return $this->redirect(
|
||||||
$this->generateUrl(
|
$this->generateUrl(
|
||||||
'report_new',
|
'report_new',
|
||||||
@@ -391,7 +391,7 @@ class ReportController extends AbstractController
|
|||||||
{
|
{
|
||||||
$cFGroupId = $request->query->get('cFGroup');
|
$cFGroupId = $request->query->get('cFGroup');
|
||||||
|
|
||||||
if ($cFGroupId) {
|
if ($request->query->has('cFGroup')) {
|
||||||
return $this->redirect(
|
return $this->redirect(
|
||||||
$this->generateUrl(
|
$this->generateUrl(
|
||||||
'report_export_list',
|
'report_export_list',
|
||||||
|
Reference in New Issue
Block a user