MyBB.de Forum
showthread kaputt und original gelöscht - 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: showthread kaputt und original gelöscht (/thread-16088.html)



showthread kaputt und original gelöscht - Basteltrulla - 19.04.2010

Zuerst einmal, ja ich habe schon ganz lange gesucht.

Ich möchte kein Plugin sondern fände es ganz freundlich, wenn mir jemand aufschreiben könnte, was im Original-Template "showthread" steht. Da ich mich eine Zeit lang nicht über das Admin-Panel einloggen konnte (wieso weiß ich immer noch nicht, plötzlich ging es wieder), jedenfalls habe ich die Templates dann direkt in der Datenbank bearbeitet. Nun habe ich allerding einmal aus Versehen das 1. showthread gelöscht und das neue macht mir jetzt Fehler im Explorer, alle anderen Seiten sind Fehlerlos. Könnte mir bitte jemand den Inhalt des templates showthread geben? Also nur das, was hinter "text" kommt.

Vielen Dank für hilfreiche Hilfe!

Basteltrulla


RE: showthread kaputt und original gelöscht - ows - 19.04.2010

Anbei der Original-Inhalt des Templates Zeige Thema Templates --> showthread aus der aktuellen MyBB-Version 1.4.13:

Code:
<html>
<head>
<title>{$thread['subject']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
    var quickdelete_confirm = "{$lang->quickdelete_confirm}";
// -->
</script>
<script type="text/javascript" src="jscripts/thread.js?ver=1400"></script>
</head>
<body>
    {$header}
    {$pollbox}
    <div class="float_left">
        {$multipage}
    </div>
    <div class="float_right">
        {$newreply}
    </div>
    {$ratethread}
    <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both; border-bottom-width: 0;">
        <tr>
            <td class="thead" colspan="2">
                <div style="float: right;">
                    <span class="smalltext"><strong><a href="showthread.php?mode=threaded&amp;tid={$tid}&amp;pid={$pid}#pid{$pid}">{$lang->threaded}</a> | <a href="showthread.php?mode=linear&amp;tid={$tid}&amp;pid={$pid}#pid{$pid}">{$lang->linear}</a></strong></span>
                </div>
                <div>
                    <strong>{$thread['subject']}</strong>
                </div>
            </td>
        </tr>
        {$classic_header}
    </table>
    <div id="posts">
        {$posts}
    </div>
    <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="border-top-width: 0;">
        <tr>
            <td colspan="2" class="tfoot">
                {$search_thread}
                <div>
                    <strong>&laquo; <a href="{$next_oldest_link}">{$lang->next_oldest}</a> | <a href="{$next_newest_link}">{$lang->next_newest}</a> &raquo;</strong>
                </div>
            </td>
        </tr>
    </table>
    <div class="float_left">
        {$multipage}
    </div>
    <div style="padding-top: 4px;" class="float_right">
        {$newreply}
    </div>
    <br style="clear: both;" />
    {$quickreply}
    {$threadexbox}
    {$similarthreads}
    <br />
    <div class="float_left">
        <ul class="thread_tools">
            <li class="printable"><a href="printthread.php?tid={$tid}">{$lang->view_printable}</a></li>
            <li class="sendthread"><a href="sendthread.php?tid={$tid}">{$lang->send_thread}</a></li>
            <li class="subscription_{$add_remove_subscription}"><a href="usercp2.php?action={$add_remove_subscription}subscription&amp;tid={$tid}&amp;my_post_key={$mybb->post_code}">{$add_remove_subscription_text}</a></li>
        </ul>
    </div>

    <div class="float_right" style="text-align: right;">
        {$moderationoptions}
        {$forumjump}
    </div>
    <br style="clear: both;" />
    {$footer}
</body>
</html>



RE: showthread kaputt und original gelöscht - Basteltrulla - 19.04.2010

Ganz lieben Dank für die schnelle Hilfe!