don't double-escape bio

darcs-hash:20080706210809-84dde-84b674413c2ca6540176191cc5f1b5a2ef170cbc.gz
This commit is contained in:
Evan Prodromou 2008-07-06 17:08:09 -04:00
parent b1903700d1
commit bca547c394
1 changed files with 1 additions and 1 deletions

View File

@ -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');