X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fparse_url.php;h=6a1fc110106ef8f566d599b758b38919a939699f;hb=74883adfd186967cdd41037d76dd2684de273cb8;hp=bf111f143c69d053716da3ceb71671c1a69ff89b;hpb=6cdcbabb3b424f184086d55cac112937e7f8b01d;p=friendica.git diff --git a/mod/parse_url.php b/mod/parse_url.php index bf111f143c..6a1fc11010 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -488,7 +488,14 @@ function parse_url_content(&$a) { unset($siteinfo["keywords"]); - echo add_page_info_data($siteinfo); + $info = add_page_info_data($siteinfo); + + if (!$textmode) + // Replace ' with ’ - not perfect - but the richtext editor has problems otherwise + $info = str_replace(array("'"), array("’"), $info); + + echo $info; + killme(); } ?>