mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
force using strict type on comparison
This commit is contained in:
parent
4794039250
commit
fa7850196f
@ -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',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user