diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-11 22:32:36 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-11 22:32:36 +0000 |
commit | 39835a50277965f77322d5af30123100d2e1b694 (patch) | |
tree | 7ece3ce578d3d46ad8ff0176101f266b121c1115 /kohana/helpers | |
parent | b98f498ed652f10ffc6dbdd1f7305ff9ec262f74 (diff) |
Update Kohana to r3890
Diffstat (limited to 'kohana/helpers')
-rw-r--r-- | kohana/helpers/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kohana/helpers/html.php b/kohana/helpers/html.php index d1f09612..37f80ae3 100644 --- a/kohana/helpers/html.php +++ b/kohana/helpers/html.php @@ -419,7 +419,7 @@ class html_Core { $compiled = ''; foreach ($attrs as $key => $val) { - $compiled .= ' '.$key.'="'.$val.'"'; + $compiled .= ' '.$key.'="'.html::specialchars($val).'"'; } return $compiled; |