in translations, post kind is written erroneously
causing regular topics by non-admins not to be shown.
this is a bug in newpost.aspx
(on line 144:)
If bolIsAdmin Then
objDataRow("type") = dropType.SelectedItem.value
Else
objDataRow("type") = GetTranslation("newpost_regular")
End If
(corrected line:)
Else
objDataRow("type") = "regular"
in this way it is working.
sid
sid2k@tiscali.it