1
1
Fork 0

Function calls

update function calls to new class
This commit is contained in:
Adam Magness 2018-11-06 21:16:27 -05:00
commit e537f7d017
6 changed files with 10 additions and 10 deletions

View file

@ -1363,7 +1363,7 @@ class BBCode extends BaseObject
$text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $text);
// leave open the posibility of [map=something]
// this is replaced in prepare_body() which has knowledge of the item location
// this is replaced in Item::prepareBody() which has knowledge of the item location
if (strpos($text, '[/map]') !== false) {
$text = preg_replace_callback(
@ -1474,7 +1474,7 @@ class BBCode extends BaseObject
$text = str_replace('[hr]', '<hr />', $text);
// This is actually executed in prepare_body()
// This is actually executed in Item::prepareBody()
$text = str_replace('[nosmile]', '', $text);

View file

@ -315,7 +315,7 @@ class Post extends BaseObject
localize_item($item);
$body = prepare_body($item, true);
$body = Item::prepareBody($item, true);
list($categories, $folders) = get_cats_and_terms($item);

View file

@ -7,6 +7,7 @@ namespace Friendica\Protocol;
use Friendica\Core\Logger;
use Friendica\Content\Text\HTML;
use Friendica\Core\Protocol;
use Friendica\Model\Item;
/**
* @brief Email class
@ -331,7 +332,7 @@ class Email
$part = uniqid("", true);
$html = prepare_body($item);
$html = Item::prepareBody($item);
$headers .= "Mime-Version: 1.0\n";
$headers .= 'Content-Type: multipart/alternative; boundary="=_'.$part.'"'."\n\n";