Skip to content

Commit

Permalink
Merge branch 'master' into feature/2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zonky2 committed Sep 24, 2024
2 parents ad9dfe2 + 5dc4339 commit 882dac9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/View/ActionHandler/CopyHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* This file is part of contao-community-alliance/dc-general-contao-frontend.
*
* (c) 2015-2023 Contao Community Alliance.
* (c) 2015-2024 Contao Community Alliance.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
Expand All @@ -13,7 +13,7 @@
* @package contao-community-alliance/dc-general-contao-frontend
* @author Richard Henkenjohann <[email protected]>
* @author Ingolf Steinhardt <[email protected]>
* @copyright 2015-2023 Contao Community Alliance.
* @copyright 2015-2024 Contao Community Alliance.
* @license https://github.com/contao-community-alliance/dc-general-contao-frontend/blob/master/LICENSE LGPL-3.0
* @filesource
*/
Expand Down Expand Up @@ -99,7 +99,7 @@ public function handleEvent(ActionEvent $event): void
}

// Only run when no response given yet.
if ('' !== $event->getResponse()) {
if (null !== $event->getResponse()) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/View/ActionHandler/CreateHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function handleEvent(ActionEvent $event): void
}

// Only run when no response given yet.
if ('' !== $event->getResponse()) {
if (null !== $event->getResponse()) {
return;
}

Expand Down

0 comments on commit 882dac9

Please sign in to comment.