links on title and content tags
To Allow links on title and content tags I suggest a small modification on FNClient v 0.6.0 (07/02/2006) on file library.fnretrieve.inc.php from line 151/153 where replace the existing lines $annotation['title'] = $title[1]; $annotation['content'] = $content[1]; into $annotation['title'] = str_replace(array("&", "<", ">"), array("&", "<", ">"), $title[1]); $annotation['content'] = str_replace(array("&", "<", ">"), array("&", ...more »
To Allow links on title and content tags
I suggest a small modification on FNClient v 0.6.0 (07/02/2006) on file library.fnretrieve.inc.php from line 151/153 where replace the existing lines
$annotation['title'] = $title[1];
$annotation['content'] = $content[1];
into
$annotation['title'] = str_replace(array("&", "<", ">"), array("&", "<", ">"), $title[1]);
$annotation['content'] = str_replace(array("&", "<", ">"), array("&", "<", ">"), $content[1]);
« less full details »

Social Web