Quickie I wrote for someone at Infopop Community. Will post it here in case anyone else is ever looking for it.... like to contribute to the library.<br /><br />This hack will no longer give users the option to turn off the "edited by" tag when they edit their post. All edited posts will bear this "edited by" tag.<br /><br />In editpost.php find this:<br /><pre><font class="small">code:</font><hr><br />if ( $Username == $Postedby ) { <br />$markeditselect = "<br /><br /><input type=\"checkbox\" value=\"1\" name=\"markedit\" checked class=\"formboxes\" /> <br />{$ubbt_lang['MARK_EDIT']}"; <br />} <br />else { <br />$markeditselect = "<input type=\"hidden\" value=\"1\" name=\"markedit\" class=\"formboxes\" />"; <br />} <br /></pre><hr><br /><br />and change to this:<br /><pre><font class="small">code:</font><hr><br />$markeditselect = "<input type=\"hidden\" value=\"1\" name=\"markedit\" class=\"formboxes\" />"; <br /></pre><hr><br /><br /><br />That's it. <img src="/forum/images/graemlins/wink.gif" alt="" />