mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-17 11:43:43 +00:00
Remove unused $preserve_nl parameter from bb2diaspora()
This commit is contained in:
parent
91fd77af3b
commit
ab23f858cb
2 changed files with 3 additions and 3 deletions
|
@ -338,7 +338,7 @@ function diaspora_send(&$a,&$b) {
|
|||
} while ($oldbody != $body);
|
||||
|
||||
// convert to markdown
|
||||
$body = bb2diaspora($body, false, true);
|
||||
$body = bb2diaspora($body);
|
||||
|
||||
// Adding the title
|
||||
if(strlen($title))
|
||||
|
|
|
@ -217,7 +217,7 @@ function libertree_send(&$a,&$b) {
|
|||
} while ($oldbody != $body);
|
||||
|
||||
// convert to markdown
|
||||
$body = bb2diaspora($body, false, false);
|
||||
$body = bb2diaspora($body, false);
|
||||
|
||||
// Adding the title
|
||||
if(strlen($title))
|
||||
|
|
Loading…
Reference in a new issue