This *might* fix Diaspora @ tags - or it might not.

This commit is contained in:
Friendika 2011-08-30 20:20:17 -07:00
parent f0a4a6af61
commit b11a0efff1
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,8 @@ function diaspora2bb($s) {
$s = str_replace(array('-^doublestar^-','-^doublescore-^','-^star^-','-^score^-'), array('**','__','*','_'), $s);
$s = preg_replace('/\[(.+?)\]\((.+?)\)/','[url=$2]$1[/url]',$s);
$s = preg_replace('/\!\[(.+?)\]\((.+?)\)/','[img]$2[/img]',$s);
$s = preg_replace('/\@\{(.+?)\; (.+?)\@(.+?)\}/','@[url=https://$3/u/$2]$1[/url]',$s);
$s = escape_tags($s);
return $s;