forked from friendica/friendica-addons
Merge pull request #538 from MrPetovan/task/3878-move-bb2diaspora-to-src
[diaspora|libertree] Move bb2diaspora to BBCode::toMarkdown
This commit is contained in:
commit
3b6779f5db
|
@ -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))
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue