MyBB.de Forum
Schnell antwort! - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.4.x (https://www.mybb.de/forum/forum-51.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-52.html)
+---- Thema: Schnell antwort! (/thread-10800.html)



Schnell antwort! - niGhtY - 05.09.2008

moin mybb-team,

In meinem Forum funktioniert die schnell Antwort nicht da kommt. Falscher Autorisierungscode! Greifst du auf diese Funktion auf die übliche Weise zu? Bitte gehe zurück und versuche es erneut.... Das hat doch bestimmt was mit den templates zu tun oder? Wenn ja welche sind das in dem die schnell Antwort vorhanden ist damit ich das korrigieren kann? Die Templates sind bei mir auch schon alle aktualisiert. ich denke mal das ich da auch irgendwo ein Fehler gemacht haben müsste ^^ Jetzt nur alle templates durchschauen nicht wissen was und wo ich was falsch gemacht habe, schreib ich lieber hier ein neues Thema. Damit ich auch gleich den richtigen code dazu bekomme =)

MFG: niGhtY Wink


RE: Schnell antwort! - Zwoetzen - 05.09.2008

Mit etwas eigen Initiative hättest du das Template auch selbst gefunden Wink

Wo wird die Schnell Antwort angezeigt? Im Thread, also Template Gruppe "Show Thread".
Wie heißt das Ding auf englisch? Genau, "Quick Reply", also wird das Template wohl "showthread_quickreply" sein Wink

Hier der (unveränderte) Code, der bei mir drin steht:
[MyBB 1.4, nicht 1.4.1!]
PHP-Code:
<br />
<
form method="post" action="newreply.php?tid={$tid}&amp;processed=1" name="quick_reply_form" id="quick_reply_form">
    <
input type="hidden" name="my_post_key" value="{$mybb->post_code}/>
    <
input type="hidden" name="subject" value="RE: {$thread['subject']}/>
    <
input type="hidden" name="action" value="do_newreply" />
    <
input type="hidden" name="posthash" value="{$posthash}id="posthash" />
    <
input type="hidden" name="quoted_ids" value="" id="quoted_ids" />
    <
input type="hidden" name="lastpid" id="lastpid" value="{$last_pid}/>
    <
input type="hidden" name="from_page" value="{$page}/>
    <
input type="hidden" name="tid" value="{$tid}/>
    <
input type="hidden" name="method" value="quickreply" />

    <
table border="0" cellspacing="{$theme['borderwidth']}cellpadding="{$theme['tablespace']}class="tborder">
        <
thead>
            <
tr>
                <
td class="thead" colspan="2">
                    <
div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['quickreply']}.gif" id="quickreply_img" class="expander" alt="[-]" title="[-]" /></div>
                    <
div><strong>{$lang->quick_reply}</strong></div>
                </
td>
            </
tr>
        </
thead>
        <
tbody style="{$collapsed['quickreply_e']}id="quickreply_e">
            <
tr>
                <
td class="trow1" valign="top" width="22%">
                    <
strong>{$lang->message}</strong><br />
                    <
span class="smalltext">{$lang->message_note}<br /><br />
                    <
label><input type="checkbox" class="checkbox" name="postoptions[signature]" value="1" {$postoptionschecked['signature']} />&nbsp;<strong>{$lang->signature}</strong></label><br />
                    <
label><input type="checkbox" class="checkbox" name="postoptions[disablesmilies]" value="1" />&nbsp;<strong>{$lang->disable_smilies}</strong></label>{$closeoption}</span>
                </
td>
                <
td class="trow1">
                    <
div style="width: 95%">
                        <
textarea style="width: 100%; padding: 4px; margin: 0;" rows="8" cols="80" name="message" id="message" tabindex="1"></textarea>
                    </
div>
                    <
div class="editor_control_bar" style="width: 95%; padding: 4px; margin-top: 3px; display: none;" id="quickreply_multiquote">
                        <
span class="smalltext">
                            {
$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>.
                        </
span>
                    </
div>
                </
td>
            </
tr>
            {
$captcha}
            <
tr>
                <
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>
            </
tr>
        </
tbody>
    </
table>
</
form

Die Meldung lässt darauf schließen, das wohl was mit der Zeile
PHP-Code:
<input type="hidden" name="my_post_key" value="{$mybb->post_code}/> 
nicht stimmt.


RE: Schnell antwort! - niGhtY - 07.09.2008

okay hat funktioniert auch bei 1.4.1 jetzt gehts danke Wink