MyBB.de Forum

Normale Version: Wochenanfang
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Hi, frankrieger!

Eine super Idee dieser Mod. Allerdings, zumindest bei mir, funktioniert er nicht. Es gibt keine Fehlermeldung und der Mod läßt sich auch einwandfrei aktivieren, aber die Änderung, dass der Kalender mit Montag beginnt, tritt nicht ein.

Liebe Grüße, GM!
Hast du die Rechte der calendar.php vor dem Aktivieren auf 777 gestellt?
Jep! - Sonst würde doch auch eine Fehlermeldung kommen!
ich habe es bei mir mal getestet und bei mir ist der anfang auch nicht Montag sondern Sonntag.
Dito!
Kann mir einer von euch bitte mal sein Template calendar posten?
Hier mein Template "calendar":
Code:
<html>
<head>
    <title>{$mybb->settings['bbname']} - {$lang->calendar}</title>
    {$headerinclude}
</head>
<body>
    {$header}
    <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
        <tr>
            <td class="thead" width="14%" align="center">{$lang->sunday}</td>
            <td class="thead" width="14%" align="center">{$lang->monday}</td>
            <td class="thead" width="14%" align="center">{$lang->tuesday}</td>
            <td class="thead" width="14%" align="center">{$lang->wednesday}</td>
            <td class="thead" width="14%" align="center">{$lang->thursday}</td>
            <td class="thead" width="14%" align="center">{$lang->friday}</td>
            <td class="thead" width="14%" align="center">{$lang->saturday}</td>
        </tr>
        {$daybits}
    </table>

    <table width="100%" align="center">
        <tr>
            <td><span class="smalltext"><a href="calendar.php?year={$prevyear}&amp;month={$prevmonth}">&laquo; {$monthnames[$prevmonth]} {$prevyear}</a></span></td>
            <td align="right"><span class="smalltext"><a href="calendar.php?year={$nextyear}&amp;month={$nextmonth}">{$monthnames[$nextmonth]} {$nextyear} &raquo;</a></span></td>
        </tr>
    </table>

    <br />

    <form action="calendar.php" method="post">
        <table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
            <tr>
                <td class="trow1">
                    <table width="100%" cellspacing="0" cellpadding="0" border="0">
                        <tr>
                            <td class="trow1">{$addpublicevent}{$neweventsep}{$addprivateevent}</td>
                            <td class="trow1" align="right"><span class="smalltext"><strong>{$lang->jump_month}</strong>
                            <select name="month">
                                <option value="{$month}">{$monthnames[$month]}</option>
                                <option value="{$month}">----------</option>
                                <option value="1">{$lang->alt_month_1}</option>
                                <option value="2">{$lang->alt_month_2}</option>
                                <option value="3">{$lang->alt_month_3}</option>
                                <option value="4">{$lang->alt_month_4}</option>
                                <option value="5">{$lang->alt_month_5}</option>
                                <option value="6">{$lang->alt_month_6}</option>
                                <option value="7">{$lang->alt_month_7}</option>
                                <option value="8">{$lang->alt_month_8}</option>
                                <option value="9">{$lang->alt_month_9}</option>
                                <option value="10">{$lang->alt_month_10}</option>
                                <option value="11">{$lang->alt_month_11}</option>
                                <option value="12">{$lang->alt_month_12}</option>
                            </select>
                            &nbsp;
                            <select name="year">
                                <option value="{$year}">{$year}</option>
                                <option value="{$year}">----------</option>
                                {$yearsel}
                            </select>
                            &nbsp;
                            {$gobutton}
                        </span></td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
    </form>
{$footer}
</body>
</html>
Bitte versuch es mal mit der Version.

Wo genau liegt der Fehler? Sind nur die Spaltenüberschriften falsch?

[edit]Attachment entfernt, da die neuste Version jetzt im Download-Bereich verfügbar ist
Jep!

Und nun funzt alles!!! Danke!
It works