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

merge-requests/26/head
webchick 2011-06-22 00:02:29 -07:00
parent 4538ad0e24
commit e189bbd76a
1 changed files with 1 additions and 1 deletions

View File

@ -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,
);