Choose a Category below
You are not logged in.
A small code error is causing this, it's however very easy to fix.
----------------------------------------------------------------
For the front end calendar do the following:
Open file calendar.php
Find line 42, it should look like this:
echo "<b>" . strftime("%B %G", $datum) . "</b>\n";
Change it to:
echo "<b>" . strftime("%B %Y", $datum) . "</b>\n";
----------------------------------------------------------------
For the calendar in the user are do the following:
Open file dagsidan.php
Find line 89, it should look like this:
echo "<b>" . strftime("%B %G", $datum) . "</b>\n";
Change it to:
echo "<b>" . strftime("%B %Y", $datum) . "</b>\n";
---------------------------------------------------------------
Thats it folks, now the calendar will show the correct year for january.
Admin
Offline