commit dce1ee912bab0827f6fe83967e9b3c554ac82280 Author: Joel Pittet Date: Sun Apr 20 16:46:00 2014 -0600 more raw diff --git a/core/includes/common.inc b/core/includes/common.inc index 46f0383..703b259 100644 --- a/core/includes/common.inc +++ b/core/includes/common.inc @@ -3807,7 +3807,7 @@ function drupal_render_children(&$element, $children_keys = NULL) { $output .= drupal_render($element[$key]); } } - return $output; + return new Markup($output); } /** diff --git a/core/includes/theme.inc b/core/includes/theme.inc index 7556a2f..3a3ce3d 100644 --- a/core/includes/theme.inc +++ b/core/includes/theme.inc @@ -1710,7 +1710,7 @@ function template_preprocess_item_list(&$variables) { // Set the item's value and attributes for the template. $item = array( - 'value' => new Markup($item), + 'value' => $item, 'attributes' => new Attribute($attributes), ); } diff --git a/core/modules/book/templates/book-node-export-html.html.twig b/core/modules/book/templates/book-node-export-html.html.twig index 0efa9a7..57b5662 100644 --- a/core/modules/book/templates/book-node-export-html.html.twig +++ b/core/modules/book/templates/book-node-export-html.html.twig @@ -18,5 +18,5 @@

{{ title }}

{{ content }} - {{ children }} + {{ children|raw }}
diff --git a/core/modules/comment/templates/comment.html.twig b/core/modules/comment/templates/comment.html.twig index 7e24a38..aafa668 100644 --- a/core/modules/comment/templates/comment.html.twig +++ b/core/modules/comment/templates/comment.html.twig @@ -79,7 +79,7 @@ {{ title_suffix }} diff --git a/core/modules/system/templates/container.html.twig b/core/modules/system/templates/container.html.twig index a643e19..7800b64 100644 --- a/core/modules/system/templates/container.html.twig +++ b/core/modules/system/templates/container.html.twig @@ -15,4 +15,4 @@ * @ingroup themeable */ #} -{{ children }} +{{ children|raw }} diff --git a/core/modules/system/templates/dropbutton-wrapper.html.twig b/core/modules/system/templates/dropbutton-wrapper.html.twig index ca0ff7e..d92bb6e 100644 --- a/core/modules/system/templates/dropbutton-wrapper.html.twig +++ b/core/modules/system/templates/dropbutton-wrapper.html.twig @@ -16,7 +16,7 @@ {% spaceless %}
- {{ children }} + {{ children|raw }}
{% endspaceless %} diff --git a/core/modules/system/templates/fieldset.html.twig b/core/modules/system/templates/fieldset.html.twig index 9e4fe68..f7fed3a 100644 --- a/core/modules/system/templates/fieldset.html.twig +++ b/core/modules/system/templates/fieldset.html.twig @@ -31,7 +31,7 @@ {% if prefix %} {{ prefix }} {% endif %} - {{ children }} + {{ children|raw }} {% if suffix %} {{ suffix }} {% endif %} diff --git a/core/modules/system/templates/form-element.html.twig b/core/modules/system/templates/form-element.html.twig index 788686a..bf9b76f 100644 --- a/core/modules/system/templates/form-element.html.twig +++ b/core/modules/system/templates/form-element.html.twig @@ -43,7 +43,7 @@ {% if prefix is not empty %} {{ prefix }} {% endif %} - {{ children }} + {{ children|raw }} {% if suffix is not empty %} {{ suffix }} {% endif %} diff --git a/core/modules/system/templates/form.html.twig b/core/modules/system/templates/form.html.twig index b95fe71..7d5fdc2 100644 --- a/core/modules/system/templates/form.html.twig +++ b/core/modules/system/templates/form.html.twig @@ -12,4 +12,4 @@ * @ingroup themeable */ #} -
{{ children }}
+
{{ children|raw }}
diff --git a/core/modules/system/templates/item-list.html.twig b/core/modules/system/templates/item-list.html.twig index 34e1802..8e0a385 100644 --- a/core/modules/system/templates/item-list.html.twig +++ b/core/modules/system/templates/item-list.html.twig @@ -26,7 +26,7 @@ {%- if items -%} <{{ list_type }}{{ attributes }}> {%- for item in items -%} - {{ item.value }} + {{ item.value|raw }} {%- endfor -%} {%- else -%} diff --git a/core/modules/system/templates/vertical-tabs.html.twig b/core/modules/system/templates/vertical-tabs.html.twig index 5b7298b..98fe6d6 100644 --- a/core/modules/system/templates/vertical-tabs.html.twig +++ b/core/modules/system/templates/vertical-tabs.html.twig @@ -12,4 +12,4 @@ * @ingroup themeable */ #} -
{{ children }}
+
{{ children|Raw }}
diff --git a/core/modules/views_ui/templates/views-ui-container.html.twig b/core/modules/views_ui/templates/views-ui-container.html.twig index d45b158..3010a6c 100644 --- a/core/modules/views_ui/templates/views-ui-container.html.twig +++ b/core/modules/views_ui/templates/views-ui-container.html.twig @@ -12,4 +12,4 @@ * @ingroup themeable */ #} -{{ children }} +{{ children|raw }} diff --git a/core/themes/bartik/templates/comment.html.twig b/core/themes/bartik/templates/comment.html.twig index 843921c..88e1db4 100644 --- a/core/themes/bartik/templates/comment.html.twig +++ b/core/themes/bartik/templates/comment.html.twig @@ -66,17 +66,17 @@
- {{ user_picture }} + {{ user_picture|raw }}