]> git.mxchange.org Git - friendica-addons.git/blobdiff - blogger/blogger.php
EN-GB translation update for blockem
[friendica-addons.git] / blogger / blogger.php
index 7dfbcc4a2d526f6b9b9d1420fad33751896ea285..30c450bda9f6e5c180c597fdb70fee59c381750c 100644 (file)
@@ -5,6 +5,8 @@
  * Version: 1.0
  *
  */
+
+use Friendica\Content\Text\BBCode;
 use Friendica\Core\Addon;
 use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
@@ -181,10 +183,8 @@ function blogger_send(&$a, &$b)
        $bl_blog = PConfig::get($b['uid'], 'blogger', 'bl_blog');
 
        if ($bl_username && $bl_password && $bl_blog) {
-               require_once('include/bbcode.php');
-
                $title = '<title>' . (($b['title']) ? $b['title'] : L10n::t('Post from Friendica')) . '</title>';
-               $post = $title . bbcode($b['body']);
+               $post = $title . BBCode::convert($b['body']);
                $post = xmlify($post);
 
                $xml = <<< EOT