Thanks for telling me - I learned something new here <img border="0" title="" alt="[Wink]" src="images/icons/wink.gif" /> . Well, sounds like a silly practice - I'm actually glad w3t doesn't allow that <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" /> . Of course, there would be an easy way to do what Strategist wants - in addpost.pl find
<font color=red>
# -------------------------------------
# Make sure there is a subject and body
if ( ($Subject eq "") &#0124;&#0124; ($Body eq "") ) {
w3t::not_right("$lang{'ALL_FIELDS'}",$Cat);
}
</font color=red>
and replace with
<font color=blue>
# -------------------------------------
# Make sure there is a subject and body
if ($Subject eq "") {
w3t::not_right("$lang{'ALL_FIELDS'}",$Cat);
}
elsif ($Body eq "") {
$Body = "No Text";
}
</font color=blue>
That should do it <img border="0" title="" alt="[Smile]" src="images/icons/smile.gif" /> - I couldn't test it though, I managed to crash mine and I'm waiting for a database restore <img border="0" title="" alt="[Frown]" src="images/icons/frown.gif" /> .