diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-06 17:08:09 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-06 17:08:09 -0400 |
commit | bca547c3942fe3a1a595ec4897a3e5a87dd2839f (patch) | |
tree | 6fa3032d018cfbda33769a3191baccb205d40fde | |
parent | b1903700d1ddb8dcd0b5148b3d40c15f02c2eaf2 (diff) |
don't double-escape bio
darcs-hash:20080706210809-84dde-84b674413c2ca6540176191cc5f1b5a2ef170cbc.gz
-rw-r--r-- | actions/showstream.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index 7e83396f8..62e490b69 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -146,7 +146,7 @@ class ShowstreamAction extends StreamAction { common_element('p', 'location', $profile->location); } if ($profile->bio) { - common_element('p', 'description', htmlspecialchars($profile->bio)); + common_element('p', 'description', $profile->bio); } if ($profile->homepage) { common_element_start('p', 'website'); |