MyBB Community Forums

Full Version: MyBB Mobile Version Post Reply Does Not Work In Internet Explorer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Exactly - you need to validate the HTML and fix it. I dont have a copy of the 1.6.4 code base - what you can do is make a copy of the template you have now (notepad ++ or similar) and then revert that template.
(2012-10-10, 12:32 PM)Leefish Wrote: [ -> ]Exactly - you need to validate the HTML and fix it. I dont have a copy of the 1.6.4 code base - what you can do is make a copy of the template you have now (notepad ++ or similar) and then revert that template.

Ahhhh I will see what happens - good call!

OMG - That worked!!! Just reverting back to the original and replacing the plugins that needed to be there...

Muchly appreciated Lee - sometimes we just don't see the obvious unless prompted.

Thank you Smile

Heads up Lee... This is the newreply template that works if anyone gets this issue. Now marked resolved.

<html>
<head>
<title>{$lang->post_reply_to}</title>
{$headerinclude}
<script type="text/javascript" src="jscripts/post.js?ver=1400"></script>
</head>
<body>
{$header}
{$preview}
{$maximageserror}
{$attacherror}
{$reply_errors}
<form action="newreply.php?tid={$tid}&amp;processed=1" method="post" enctype="multipart/form-data" name="input">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->post_new_reply}</strong></td>
</tr>
<tr>
<td class="tcat" colspan="2"><span class="smalltext"><strong>{$lang->reply_to}</strong></span></td>
</tr>
{$loginbox}



<tr>
<td class="trow2" width="20%"><strong>{$lang->post_subject}</strong></td>
<td class="trow2"><input type="text" class="textbox" name="subject" size="40" maxlength="85" value="{$subject}" tabindex="1" /></td>
</tr>
{$posticons}
<tr>
<td class="trow2" valign="top"><strong>{$lang->your_message}</strong><br />{$smilieinserter}</td>
<td class="trow2">
<textarea id="message" name="message" rows="20" cols="70" tabindex="2" >{$message}</textarea>
{$codebuttons}
{$multiquote_external}
</td>
</tr>
<tr>
<td class="trow1" valign="top"><strong>{$lang->post_options}</strong></td>
<td class="trow1"><span class="smalltext">
<label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" tabindex="6"{$postoptionschecked['signature']} /> {$lang->options_sig}</label>
{$disablesmilies}
</span></td>
</tr>
{$modoptions}
{$subscriptionmethod}
{$captcha}
<tr>
</form></td>


</table>
{$requiredfields}
{$attachbox}
<br />
<br>
<center><b>Posting replies do not work with Internet Explorer - Please use Firefox, Chrome, Opera, Safari.</b></center>
<br />
<div align="center"><input class="button" value="Post Reply" tabindex="2" accesskey="s" id="quick_reply_submit" type="submit"/><input type="submit" class="button" name="previewpost" 
value="{$lang->preview_post}" tabindex="4" />
{$savedraftbutton}
</div>
<input type="hidden" name="action" value="do_newreply" />
<input type="hidden" name="replyto" value="{$replyto}" />
<input type="hidden" name="posthash" value="{$posthash}" />
<input type="hidden" name="attachmentaid" value="" />
<input type="hidden" name="attachmentact" value="" />
<input type="hidden" name="quoted_ids" value="{$quoted_ids}" />
<input type="hidden" name="tid" value="{$tid}" />
{$editdraftpid}
</form>
{$forumrules}
{$threadreview}
{$footer}
</body>
</html>

The buttons may need re-naming as per your own button.
Pages: 1 2