]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
don't double-escape bio
authorEvan Prodromou <evan@prodromou.name>
Sun, 6 Jul 2008 21:08:09 +0000 (17:08 -0400)
committerEvan Prodromou <evan@prodromou.name>
Sun, 6 Jul 2008 21:08:09 +0000 (17:08 -0400)
darcs-hash:20080706210809-84dde-84b674413c2ca6540176191cc5f1b5a2ef170cbc.gz

actions/showstream.php

index 7e83396f8e395eaec241c95a99c2d0cf58caeba9..62e490b690482d6ed23b2378e698e903eba0cfd6 100644 (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');