facebook parses out punctuation on the left of links but not on right

2022.09-rc
Friendika 2011-03-15 17:47:49 -07:00
rodzic f01538a54f
commit e2ea341094
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -225,7 +225,7 @@ function facebook_post_hook(&$a,&$b) {
// make links readable before we strip the code
$msg = preg_replace("/\[url=(.+?)\](.+?)\[\/url\]/is",'$2 [$1]',$msg);
$msg = preg_replace("/\[url=(.+?)\](.+?)\[\/url\]/is",'$2 $1',$msg);
$msg = preg_replace("/\[img\](.+?)\[\/img\]/is", t('Image: ') . '$1',$msg);