You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the user_templateLayout is executed, $config['flexParentDatabaseRow']['pid'] may be null, which results in a type error.
DERHANSEN\SfEventMgt\Hooks\TemplateLayouts::getTemplateLayoutsFromTsConfig(): Argument #1 ($pageUid) must be of type int, null given, called in /home/vendor/derhansen/sf_event_mgt/Classes/Hooks/TemplateLayouts.php on line 26
Ensure that there is a fallback for non existing pageUid
The text was updated successfully, but these errors were encountered:
This change ensures, that `$config['flexParentDatabaseRow']['pid']`
is available and adds a fallback to `0` when not. Additionally,
the resulting value is typecasted to int to prevent type mismatch
errors.
Refs #1250
When the
user_templateLayout
is executed,$config['flexParentDatabaseRow']['pid']
may be null, which results in a type error.Ensure that there is a fallback for non existing pageUid
The text was updated successfully, but these errors were encountered: