diff --git a/nsfw/nsfw.php b/nsfw/nsfw.php index 5089bf5e..42c80fc2 100644 --- a/nsfw/nsfw.php +++ b/nsfw/nsfw.php @@ -34,125 +34,126 @@ 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('Not Safe For Work (General Purpose Content Filter)') . '

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