]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/Text/BBCode.php
Function calls
[friendica.git] / src / Content / Text / BBCode.php
index 3592059d0ca76770ac7698fb7ac9bc449559b30e..f37400f836ac8e9c46fd817c21312dce432dee3e 100644 (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);