Advertisement
Guest User

showthread_quickreply

a guest
Aug 12th, 2013
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.71 KB | None | 0 0
  1. <br />
  2. <form method="post" action="newreply.php?tid={$tid}&amp;processed=1" name="quick_reply_form" id="quick_reply_form">
  3.     <input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
  4.     <input type="hidden" name="subject" value="RE: {$thread['subject']}" />
  5.     <input type="hidden" name="action" value="do_newreply" />
  6.     <input type="hidden" name="posthash" value="{$posthash}" id="posthash" />
  7.     <input type="hidden" name="quoted_ids" value="" id="quoted_ids" />
  8.     <input type="hidden" name="lastpid" id="lastpid" value="{$last_pid}" />
  9.     <input type="hidden" name="from_page" value="{$page}" />
  10.     <input type="hidden" name="tid" value="{$tid}" />
  11.     <input type="hidden" name="method" value="quickreply" />
  12.  
  13.     <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
  14.         <thead>
  15.             <tr>
  16.                 <td class="thead" colspan="2">
  17.                     <div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['quickreply']}.gif" id="quickreply_img" class="expander" alt="[-]" title="[-]" /></div>
  18.                     <div><strong>{$lang->quick_reply}</strong></div>
  19.                 </td>
  20.             </tr>
  21.         </thead>
  22.         <tbody style="{$collapsed['quickreply_e']}" id="quickreply_e">
  23.             <tr>
  24.                 <td class="trow1" valign="top" width="22%">
  25.                     <strong>{$lang->message}</strong><br />
  26.                     <span class="smalltext">{$lang->message_note}<br /><br />
  27.                     {$option_signature}
  28.                     <label><input type="checkbox" class="checkbox" name="postoptions[disablesmilies]" value="1" />&nbsp;<strong>{$lang->disable_smilies}</strong></label>{$closeoption}</span>
  29.                 </td>
  30.                 <td class="trow1">
  31.                     <div style="width: 95%">
  32. <if $mybb->user['uid'] == 0 then>
  33. {$lang->username}: <input type="text" name="username" class="textbox" /><br />
  34. </if>                      
  35. <textarea style="width: 100%; padding: 4px; margin: 0;" rows="8" cols="80" name="message" id="message" tabindex="1"></textarea>
  36.                     </div>
  37.                     <div class="editor_control_bar" style="width: 95%; padding: 4px; margin-top: 3px; display: none;" id="quickreply_multiquote">
  38.                         <span class="smalltext">
  39.                             {$lang->quickreply_multiquote_selected} <a href="./newreply.php?tid={$tid}&amp;load_all_quotes=1" onclick="return Thread.loadMultiQuoted();">{$lang->quickreply_multiquote_now}</a> {$lang->or} <a href="javascript:Thread.clearMultiQuoted();">{$lang->quickreply_multiquote_deselect}</a>.
  40.                         </span>
  41.                     </div>
  42.                 </td>
  43.             </tr>
  44.             {$captcha}
  45.             {$regq}
  46. <tr>
  47.                 <td colspan="2" align="center" class="tfoot"><input type="submit" class="button" value="{$lang->post_reply}" tabindex="2" accesskey="s" id="quick_reply_submit" /> <input type="submit" class="button" name="previewpost" value="{$lang->preview_post}" tabindex="3" /></td>
  48.             </tr>
  49.         </tbody>
  50.     </table>
  51. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement