In showflat.php find<br />
<br />$postrow[$i]['Body'] = $Body;<br />
<br />and replace with<br />
<br /> // cut the images out for anonymous<br /> if ($user['U_Number'] < 2){<br /> if (preg_match("/img src/", $Body)) {<br /> $Body = preg_replace("/<img src=/", "picture:", $Body);<br /> }<br /> }<br /> $postrow[$i]['Body'] = $Body;<br /><br /><br />In showthreaded.php find<br />
<br />$PrintLastEdit = "";<br />
<br />and replace with<br />
<br />// cut the images out for anonymous<br />if ($user['U_Number'] < 2){<br /> if (preg_match("/img src/", $Body)) {<br /> $Body = preg_replace("/<img src=/", "picture:", $Body);<br /> }<br />}<br /><br />$PrintLastEdit = "";<br />