Bugfix: ' in titles were a problem.
This commit is contained in:
parent
08308e588d
commit
02808c8d12
|
@ -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();
|
||||
}
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue