]> git.mxchange.org Git - friendica.git/commitdiff
rename function
authorAdam Magness <adam.magness@gmail.com>
Tue, 6 Nov 2018 11:31:48 +0000 (06:31 -0500)
committerAdam Magness <adam.magness@gmail.com>
Tue, 6 Nov 2018 11:31:48 +0000 (06:31 -0500)
rename function and update calls.

include/api.php
src/Content/Text/HTML.php
src/Protocol/DFRN.php

index 10c0a5c91e7d077e503abe3dbb60390535eb8aeb..e4d059c1ea76eaf376a658e5560cce38b3c6a6c8 100644 (file)
@@ -1046,7 +1046,7 @@ function api_statuses_mediap($type)
        //$txt = urldecode(requestdata('status'));
 
        if ((strpos($txt, '<') !== false) || (strpos($txt, '>') !== false)) {
-               $txt = HTML::htmlToBBVideo($txt);
+               $txt = HTML::toBBVideo($txt);
                $config = HTMLPurifier_Config::createDefault();
                $config->set('Cache.DefinitionImpl', null);
                $purifier = new HTMLPurifier($config);
@@ -1092,7 +1092,7 @@ function api_statuses_update($type)
        if (requestdata('htmlstatus')) {
                $txt = requestdata('htmlstatus');
                if ((strpos($txt, '<') !== false) || (strpos($txt, '>') !== false)) {
-                       $txt = HTML::htmlToBBVideo($txt);
+                       $txt = HTML::toBBVideo($txt);
 
                        $config = HTMLPurifier_Config::createDefault();
                        $config->set('Cache.DefinitionImpl', null);
index cc7ed419241ba3f40a2ad9165a79666e00710e77..8b309e79a48a7046c9c110570b4d1297b8c05cf9 100644 (file)
@@ -711,7 +711,7 @@ class HTML
         *
         * @param string $s
         */
-       public static function htmlToBBVideo($s)
+       public static function toBBVideo($s)
        {
                $s = preg_replace(
                        '#<object[^>]+>(.*?)https?://www.youtube.com/((?:v|cp)/[A-Za-z0-9\-_=]+)(.*?)</object>#ism',
index 91910e96e335ab3b93eb7f17cd7ecc807d0a19d1..4cf7c7b731fa18de27c7f7a3a9affaa8193e59c7 100644 (file)
@@ -2502,7 +2502,7 @@ class DFRN
                        $base_url = get_app()->getBaseURL();
                        $item['body'] = HTML::relToAbs($item['body'], $base_url);
 
-                       $item['body'] = HTML::htmlToBBVideo($item['body']);
+                       $item['body'] = HTML::toBBVideo($item['body']);
 
                        $item['body'] = OEmbed::HTML2BBCode($item['body']);