The moderator notification function is open to unregistered users by default, currently. He or she couldn't be logged in if banned...
You can fix this if you don't mind a quick and dirty code hack.
Open ubb_lib_misc.cgi. FInd line 472:<pre>
sub report_a_post {
if(!$in{d}) {
</pre>
Change it to read:<pre>
sub report_a_post {
&RequireUserLogin;
if(!$in{d}) {
</pre>
Afterwards, only registered, logged in users will be able to use the report function.
--
Charles Capps
UBB.classic™ Developer
Having problems? Open up a support ticket!