X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=dwpost%2Fdwpost.php;h=a46f55b2a3d30c817ce6134349aef882af5c70a8;hb=bfd8e37fb89c74bc1ba588845c8d7a7e817e0544;hp=d9d06675f687c5a6ba47f79dbbd06daf7fa7fb22;hpb=f4e38b6ee9f88afbf5eaba9eba8523fe0295dd01;p=friendica-addons.git diff --git a/dwpost/dwpost.php b/dwpost/dwpost.php index d9d06675..a46f55b2 100644 --- a/dwpost/dwpost.php +++ b/dwpost/dwpost.php @@ -8,6 +8,7 @@ * Author: Cat Gray */ +use Friendica\Content\Text\BBCode; use Friendica\Core\Addon; use Friendica\Core\L10n; use Friendica\Core\PConfig; @@ -178,11 +179,8 @@ function dwpost_send(&$a,&$b) { $dw_blog = 'http://www.dreamwidth.org/interface/xmlrpc'; if($dw_username && $dw_password && $dw_blog) { - - require_once('include/bbcode.php'); - $title = $b['title']; - $post = bbcode($b['body']); + $post = BBCode::convert($b['body']); $post = xmlify($post); $tags = dwpost_get_tags($b['tag']);