Merge pull request #1327 from ss23/patch-2

BUG Database config values aren't escaped
This commit is contained in:
Simon Welsh 2013-03-23 12:16:13 -07:00
commit 7ce010928d

View File

@ -157,7 +157,7 @@
$attrs['class'] .= ' configured-by-env'; $attrs['class'] .= ' configured-by-env';
} }
$attrHTML = ''; $attrHTML = '';
foreach($attrs as $attrName => $attrValue) $attrHTML .= "$attrName=\"$attrValue\" "; foreach($attrs as $attrName => $attrValue) $attrHTML .= "$attrName=\"" . htmlspecialchars($attrValue) . '"';
if(isset($fieldSpec['attributes'])) $attrs = array_merge($attrs, $fieldSpec['attributes']); if(isset($fieldSpec['attributes'])) $attrs = array_merge($attrs, $fieldSpec['attributes']);
// html // html