From 3b95ac274dbfcff8da03d0161b0ca2a36411175c Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Tue, 13 Aug 2019 17:46:14 -0400 Subject: [PATCH] Suppress warnings about nonstandard tag names --- ext/afform/core/CRM/Afform/ArrayHtml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/afform/core/CRM/Afform/ArrayHtml.php b/ext/afform/core/CRM/Afform/ArrayHtml.php index cfd30300d5..3a94dddf4f 100644 --- a/ext/afform/core/CRM/Afform/ArrayHtml.php +++ b/ext/afform/core/CRM/Afform/ArrayHtml.php @@ -75,7 +75,7 @@ class CRM_Afform_ArrayHtml { } $doc = new DOMDocument(); - $doc->loadHTML("$html"); + @$doc->loadHTML("$html"); // FIXME: Validate expected number of child nodes -- 2.25.1