Well, that isn't a solution, and there are many arguments why allow anonymous users
I'm thinking of a least invasive change to the phpBB files so they can't select their name...this will hide the username input and make it hidden, it is set to a default value - "Anonymous"
Find this in posting_editor.html in the template directory of your style:
Code: Select all
<dl>
<dt><label for="username">{L_USERNAME}:</label></dt>
<dd><input type="text" tabindex="1" name="username" id="username" size="25" value="{USERNAME}" class="inputbox" /></dd>
</dl>
Replace it with:
Code: Select all
<input type="hidden" name="username" id="username" value="Anonymous" />
Try it out and see if it works as you imagine...