[diaspora|libertree] Move bb2diaspora to BBCode::toMarkdown

This commit is contained in:
Hypolite Petovan 2018-03-04 21:58:58 -05:00
parent d352f6fa2a
commit 615568ed35
2 changed files with 5 additions and 6 deletions

View File

@ -9,6 +9,7 @@
require_once 'addon/diaspora/Diaspora_Connection.php';
use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon;
use Friendica\Core\L10n;
use Friendica\Core\PConfig;
@ -303,10 +304,8 @@ function diaspora_send(&$a,&$b) {
$aspect = PConfig::get($b['uid'],'diaspora','aspect');
if ($handle && $password) {
logger('diaspora_send: all values seem to be okay', LOGGER_DEBUG);
require_once('include/bb2diaspora.php');
$tag_arr = [];
$tags = '';
$x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
@ -338,7 +337,7 @@ function diaspora_send(&$a,&$b) {
} while ($oldbody != $body);
// convert to markdown
$body = bb2diaspora($body);
$body = BBCode::toMarkdown($body);
// Adding the title
if(strlen($title))

View File

@ -5,6 +5,8 @@
* Version: 1.0
* Author: Tony Baldwin <https://free-haven.org/u/tony>
*/
use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon;
use Friendica\Core\L10n;
use Friendica\Core\PConfig;
@ -184,8 +186,6 @@ function libertree_send(&$a,&$b) {
$ltree_source .= " (".$b['app'].")";
if($ltree_url && $ltree_api_token && $ltree_blog && $ltree_source) {
require_once('include/bb2diaspora.php');
$tag_arr = [];
$tags = '';
$x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
@ -217,7 +217,7 @@ function libertree_send(&$a,&$b) {
} while ($oldbody != $body);
// convert to markdown
$body = bb2diaspora($body, false);
$body = BBCode::toMarkdown($body, false);
// Adding the title
if(strlen($title))