|
Okay bugfix this exists in 4.8.6 release and the beta pp5
Basically unregistered users can never post comments even though you allow them since the $User['nopost'] variable is ALWAYS SET to 1 for unregistered users. Basically the comments script sets any rating and message to null if $User['nopost'] is set to 1
So in your forum integration file find this line
if ( $nouploadlimit == 1 ) $User['uploadlimit'] = 0;
add beneath it this
if ( $usercomment == 1 ) $User['nopost'] = 0;
thats it unregistered users will be able to post
|