diff --git a/application/views/mobile_first/ch-weather-forecast.php b/application/views/mobile_first/ch-weather-forecast.php index 8c1cb510..dcdd1bb3 100644 --- a/application/views/mobile_first/ch-weather-forecast.php +++ b/application/views/mobile_first/ch-weather-forecast.php @@ -91,7 +91,7 @@ var weekMap = new Array("SUN.", "MON.", "TUE.", "WED.", "THU.", "FRI.", "SAT."); var monthMap = new Array("Jan.", "Feb.", "Mar.", "Apr.", "May.", "Jun.", "Jul.", "Aug.", "Sept.", "Oct.", "Nov.", "Dec."); function formatDate(date) { - return monthMap[(date.getMonth())] + date.getDate() + '.'; + return monthMap[(date.getMonth())] + ' ' + date.getDate(); } function formatWeek(date) { return weekMap[date.getDay()];