From 1b077725eb8642d0ce201a8c524b4cc89f45762e Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Wed, 17 Jul 2024 22:27:09 +0200 Subject: [PATCH] [ci skip] Remove outdated comment --- ext/dom/inner_html_mixin.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/dom/inner_html_mixin.c b/ext/dom/inner_html_mixin.c index 651a71bace2..262c85411aa 100644 --- a/ext/dom/inner_html_mixin.c +++ b/ext/dom/inner_html_mixin.c @@ -359,7 +359,6 @@ zend_result dom_element_inner_html_write(dom_object *obj, zval *newval) } } - /* We skip the steps involving the template element as context node since we don't do special handling for that. */ dom_remove_all_children(context_node); return php_dom_pre_insert(obj->document, fragment, context_node, NULL) ? SUCCESS : FAILURE; }