From: Andy Hee Date: Thu, 15 Mar 2018 09:00:09 +0000 (+0700) Subject: updated nsfw/nsfw.phpw X-Git-Url: https://git.mxchange.org/?p=friendica-addons.git;a=commitdiff_plain;h=f0b5acc7028c11b2bf75e2a25e5292774a6dbb7b updated nsfw/nsfw.phpw --- diff --git a/nsfw/nsfw.php b/nsfw/nsfw.php index b2ac0d1d..2b9c4a22 100644 --- a/nsfw/nsfw.php +++ b/nsfw/nsfw.php @@ -34,126 +34,125 @@ function nsfw_extract_photos($body) { $new_body = ''; - $img_start = strpos($body,'src="data:'); - $img_end = (($img_start !== false) ? strpos(substr($body,$img_start),'>') : false); + $img_start = strpos($body, 'src="data:'); + $img_end = (($img_start !== false) ? strpos(substr($body, $img_start), '>') : false); $cnt = 0; 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); + $body = substr($body, 0, $img_end); - $img_start = strpos($body,'src="data:'); - $img_end = (($img_start !== false) ? strpos(substr($body,$img_start),'>') : false); + $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('Content Filter (NSFW tag and more)') . '

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