From bca547c3942fe3a1a595ec4897a3e5a87dd2839f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sun, 6 Jul 2008 17:08:09 -0400 Subject: [PATCH] don't double-escape bio darcs-hash:20080706210809-84dde-84b674413c2ca6540176191cc5f1b5a2ef170cbc.gz --- actions/showstream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/showstream.php b/actions/showstream.php index 7e83396f8e..62e490b690 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');