This is a small hack that enters "NT = No text" into the body of the message if the subject ends with "NT", with or without surrounding [] or (), if the body is empty. It also won't allow posts without anything in the body unless NT is in the subject. <br /><br />Just find the following line (at line 90 in v6.0):<br /><pre><font class="small">code:</font><hr><br />if ( (ereg("^\s*$",$Subject)) || ($Body == "") || ($postername == "") ) {<br /></pre><hr><br /><br />And replace it with the following:<br /><pre><font class="small">code:</font><hr><br /> #if ( (ereg("^\s*$",$Subject)) || ($Body == "") || ($postername == "") ) {<br /> if ( (eregi("NT(\)|\])?$",$Subject)) && (preg_match("/^\s*$/i",$Body)) ) {<br /> $Body = "{$ubbt_lang['NOTEXT']} ";<br /> }<br /> if ( (ereg("^\s*$",$Subject)) || (preg_match("/^\s*$/i",$Body)) || ($postername == "") ) {<br /></pre><hr> <br /><br />The add the following line to the addpost.php language file (and change the text to something else if you like):<br /><pre><font class="small">code:</font><hr><br />$ubbt_lang['NOTEXT'] = "NT = No Text";<br /></pre><hr>