X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=nsfw%2Fnsfw.php;h=2ea20b4a92a8063077e0c913d8c37f14e8a7ec05;hb=8a700150cc8c0d430ca2b245618cc3aa4df375c7;hp=f0fc017724b50fd7a9b15f78507e1f069a8e960f;hpb=1f71af77d5a0d9d1a89f69cf1a3333021c78a060;p=friendica-addons.git diff --git a/nsfw/nsfw.php b/nsfw/nsfw.php index f0fc0177..2ea20b4a 100644 --- a/nsfw/nsfw.php +++ b/nsfw/nsfw.php @@ -1,4 +1,5 @@ ') : false); + $img_start = strpos($body, 'src="data:'); + $img_end = (($img_start !== false) ? strpos(substr($body, $img_start), '>') : false); $cnt = 0; - while($img_end !== false) { + while ($img_end !== false) { $img_end += $img_start; - $new_body = $new_body . substr($body,0,$img_start); + $new_body = $new_body . substr($body, 0, $img_start); $cnt ++; - $body = substr($body,0,$img_end); - - $img_start = strpos($body,'src="data:'); - $img_end = (($img_start !== false) ? strpos(substr($body,$img_start),'>') : false); + $body = substr($body, 0, $img_end); + $img_start = strpos($body, 'src="data:'); + $img_end = (($img_start !== false) ? strpos(substr($body, $img_start), '>') : false); } - if(! $cnt) + if (!$cnt) { return $body; - + } return $new_body; } - - - -function nsfw_addon_settings(&$a,&$s) { - - - if(! local_user()) +function nsfw_addon_settings(&$a, &$s) +{ + if (!local_user()) { return; + } - /* Add our stylesheet to the page so we can make our settings look nice */ + /* Add our stylesheet to the page so we can make our settings look nice */ - $a->page['htmlhead'] .= '' . "\r\n"; + $a->page['htmlhead'] .= '' . "\r\n"; - $enable_checked = (intval(PConfig::get(local_user(),'nsfw','disable')) ? '' : ' checked="checked" '); - $words = PConfig::get(local_user(),'nsfw','words'); - if(! $words) + $enable_checked = (intval(PConfig::get(local_user(), 'nsfw', 'disable')) ? '' : ' checked="checked" '); + $words = PConfig::get(local_user(), 'nsfw', 'words'); + if (!$words) { $words = 'nsfw,'; + } - $s .= ''; - $s .= '

' . L10n::t('Not Safe For Work (General Purpose Content Filter)') . '

'; - $s .= '
'; - $s .= '