Skip to content

Commit

Permalink
Fix PHP warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
doishub committed May 16, 2023
1 parent f521c71 commit 43e4445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/contao/dca/tl_member_notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
(
'href' => 'act=delete',
'icon' => 'delete.svg',
'attributes' => 'onclick="if(!confirm(\'' . $GLOBALS['TL_LANG']['MSC']['deleteConfirm'] . '\'))return false;Backend.getScrollOffset()"'
'attributes' => 'onclick="if(!confirm(\'' . ($GLOBALS['TL_LANG']['MSC']['deleteConfirm'] ?? '') . '\'))return false;Backend.getScrollOffset()"'
),
'show' => array
(
Expand Down

0 comments on commit 43e4445

Please sign in to comment.