PDA

View Full Version : Changing month names in calendar


Eniyi
05-23-2002, 02:15 PM
How do I change the month names on the main calendar page? In the template there's only the varibles, not the names.

Admin
05-23-2002, 02:35 PM
Edit calendar.php:
$month1name = "January";
$month2name = "February";
$month3name = "March";
$month4name = "April";
$month5name = "May";
$month6name = "June";
$month7name = "July";
$month8name = "August";
$month9name = "September";
$month10name = "October";
$month11name = "November";
$month12name = "December";

Eniyi
05-23-2002, 03:36 PM
Once more, for your help, thanks.

Admin
05-23-2002, 03:56 PM
Always glad to help.