Merge branch 'master' of git://github.com/friendica/friendica-addons
This commit is contained in:
commit
64fa5eb924
BIN
libertree.tgz
BIN
libertree.tgz
Binary file not shown.
|
@ -153,8 +153,8 @@ function libertree_send(&$a,&$b) {
|
||||||
$ltree_api_token = get_pconfig($b['uid'],'libertree','libertree_api_token');
|
$ltree_api_token = get_pconfig($b['uid'],'libertree','libertree_api_token');
|
||||||
$ltree_url = get_pconfig($b['uid'],'libertree','libertree_url');
|
$ltree_url = get_pconfig($b['uid'],'libertree','libertree_url');
|
||||||
$ltree_blog = "$ltree_url/api/v1/posts/create/?token=$ltree_api_token";
|
$ltree_blog = "$ltree_url/api/v1/posts/create/?token=$ltree_api_token";
|
||||||
|
$ltree_source = "Friendica";
|
||||||
if($ltree_url && $ltree_api_token && $ltree_blog) {
|
if($ltree_url && $ltree_api_token && $ltree_blog && $ltree_source) {
|
||||||
|
|
||||||
require_once('include/bb2diaspora.php');
|
require_once('include/bb2diaspora.php');
|
||||||
$tag_arr = array();
|
$tag_arr = array();
|
||||||
|
@ -171,7 +171,6 @@ function libertree_send(&$a,&$b) {
|
||||||
|
|
||||||
$title = $b['title'];
|
$title = $b['title'];
|
||||||
$body = $b['body'];
|
$body = $b['body'];
|
||||||
|
|
||||||
// Insert a newline before and after a quote
|
// Insert a newline before and after a quote
|
||||||
$body = str_ireplace("[quote", "\n\n[quote", $body);
|
$body = str_ireplace("[quote", "\n\n[quote", $body);
|
||||||
$body = str_ireplace("[/quote]", "[/quote]\n\n", $body);
|
$body = str_ireplace("[/quote]", "[/quote]\n\n", $body);
|
||||||
|
@ -194,9 +193,11 @@ function libertree_send(&$a,&$b) {
|
||||||
// Adding the title
|
// Adding the title
|
||||||
if(strlen($title))
|
if(strlen($title))
|
||||||
$body = "## ".html_entity_decode($title)."\n\n".$body;
|
$body = "## ".html_entity_decode($title)."\n\n".$body;
|
||||||
|
|
||||||
|
|
||||||
$params = array(
|
$params = array(
|
||||||
'text' => $body
|
'text' => $body,
|
||||||
|
'source' => $ltree_source
|
||||||
// 'token' => $ltree_api_token
|
// 'token' => $ltree_api_token
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue