diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-02-04 07:26:14 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-04 07:26:14 -0500 |
commit | 92c6034b258a117c6b01816c3ed60a1e71a43215 (patch) | |
tree | 679c4dd6d1149a96682e47937fbc5e5d3e89797e /lib | |
parent | 355d438ceebc35ae98593a9a80a817ccaa441643 (diff) | |
parent | 19724a51b3da1fb076ca47ce1ea7a4f229fa3b5d (diff) |
Merge branch '0.7.x' of git@gitorious.org:laconica/dev into 0.7.x
Diffstat (limited to 'lib')
-rw-r--r-- | lib/htmloutputter.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index f9245414f..7780b1c19 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -172,7 +172,7 @@ class HTMLOutputter extends XMLOutputter 'type' => 'text', 'id' => $id); if ($value) { - $attrs['value'] = htmlspecialchars($value); + $attrs['value'] = $value; } $this->element('input', $attrs); if ($instructions) { @@ -206,7 +206,7 @@ class HTMLOutputter extends XMLOutputter 'class' => 'checkbox', 'id' => $id); if ($value) { - $attrs['value'] = htmlspecialchars($value); + $attrs['value'] = $value; } if ($checked) { $attrs['checked'] = 'checked'; |