X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Ffrost%2Ftheme.php;h=dd1a0cebaff71e107eb1d0436c63268b676536b9;hb=362654abf06ed2974d2ce5878011ecf1fe05e203;hp=1692560341035b6d7e32fc216051185503ff6b56;hpb=11cf36105ccd359c9d21a006e13b3767712196b6;p=friendica.git diff --git a/view/theme/frost/theme.php b/view/theme/frost/theme.php index 1692560341..dd1a0cebaf 100644 --- a/view/theme/frost/theme.php +++ b/view/theme/frost/theme.php @@ -10,9 +10,9 @@ */ use Friendica\App; +use Friendica\Content\Text\Plaintext; use Friendica\Core\Addon; use Friendica\Core\System; -use Friendica\Object\Image; function frost_init(App $a) { $a->videowidth = 400; @@ -49,10 +49,8 @@ function frost_uninstall() { function frost_item_photo_links(App $a, &$body_info) { - $phototypes = Image::supportedTypes(); - - $occurence = 1; - $p = bb_find_open_close($body_info['html'], ""); + $occurence = 0; + $p = Plaintext::getBoundariesPosition($body_info['html'], ''); while($p !== false && ($occurence++ < 500)) { $link = substr($body_info['html'], $p['start'], $p['end'] - $p['start']); @@ -73,7 +71,7 @@ function frost_item_photo_links(App $a, &$body_info) } - $p = bb_find_open_close($body_info['html'], "", $occurence); + $p = Plaintext::getBoundariesPosition($body_info['html'], '', $occurence); } }