Hi, I just wanted to let you know since upgrading to 1.09 and Joomla 1.5 I was getting an error alert in IE7 when submitting a post. I have developer tools installed so not everyone may see the same message:
"postform.email.value is not an object"
Some may just see the message:
"object expected"
Or may just see an exclamation point in the status bar. This was arising from kunena.bbcode.js.php:
Code:
formmail=document.postform.email.value;
if ((formmail.length<1)) {...}
I think this is because my forums are configured so only registered users can post. The above javascript test appears to be for unregistered users who must enter an email address, but because the forum is setting the email address automatically for those who are logged in, the message writers don't enter an email and so the test for entering an email always fails.
It doesn't appear to affect functionality otherwise, and because only registered users can enter posts on my forum, I just commented out the test and it appears to work fine.