-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Closed
Description
Hi,
I found the following problem in the Nextcloud project, where this code is used in Forms appliaction. It crashes for me because $header and $footer variables are null.
I sugest to fix the code with isset() test here:
-
$headerProperties = $header->getElementsByTagNameNS($this->stylesNs, 'header-footer-properties')[0]; -
$footerProperties = $footer->getElementsByTagNameNS($this->stylesNs, 'header-footer-properties')[0];
The safe code should look like: $headerProperties = isset($header) ? $header->getElementsByTagNameNS($this->stylesNs, 'header-footer-properties')[0] : null;
Metadata
Metadata
Assignees
Labels
No labels