Lifetype 的月曆預設是星期一開始,但是不管怎麼設定星期日為起始,還是會設定星期一為開始。
本來是在兩個檔案:
$plogdir/js/calendar/datetimepicker.js
$polgdir/class/data/htmlcalendar.class.php
設定$startday=0
但是設定了還是沒用。
原來要再更改locale
$polgdir/class/locale/locale.class.php
function firstDayOfWeek() { switch($this->getCountryId()) { case "US": case "AU": case "IE": case "CN": case "TW": case "UK": $day = 0; break; default: $day = 1; break; } return $day; }
新增紅色的兩行之後,砍掉 tmp 裡面的暫存檔就OK了。
Please follow and like us: