Skip to content
Snippets Groups Projects
Commit a6c87544 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1183844 by cwells73: Fixed FAPI element #title not sanitized.

parent 0b5e2c8e
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -216,7 +216,7 @@ function color_scheme_form($complete_form, &$form_state, $theme) {
if (isset($names[$name])) {
$form['palette'][$name] = array(
'#type' => 'textfield',
'#title' => $names[$name],
'#title' => check_plain($names[$name]),
'#default_value' => $value,
'#size' => 8,
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment