I changed the form action in the newreply template from
to
Very similar change for newthread.
I didn't see any else statements in Kier's solution - only if conditions, and following that exactly worked for me for newthread and newreply (now confirmed by my webtv user in addition to the emulator). I didn't get the quick reply working though yet, but maybe I just have to add additional if not webtv conditionals to other elements on that page as well as the quick reply template itself.
Code:
<form action="newreply.php" name="vbform" method="post" onsubmit="return validatePost(this, 0, $vboptions[postminchars], $vboptions[postmaxchars]);" onreset="vB_RESET(this);">
Code:
<form action="newreply.php" name="vbform" method="post"<if condition="!is_browser('webtv')"> onsubmit="return validatePost(this, 0, $vboptions[postminchars], $vboptions[postmaxchars]);" onreset="vB_RESET(this);"</if>>
I didn't see any else statements in Kier's solution - only if conditions, and following that exactly worked for me for newthread and newreply (now confirmed by my webtv user in addition to the emulator). I didn't get the quick reply working though yet, but maybe I just have to add additional if not webtv conditionals to other elements on that page as well as the quick reply template itself.
Comment