拜托,您有什么想法,如何在PhpMyAdmin(4.5.0.2)中更改datepicker以显示使用星期一作为星期几的日历?以标准的方式,有星期天,我在设置中到处搜索,但没有找到这个。
答案 0 :(得分:2)
没有设置,但这是4.5.0.2的补丁:
diff --git a/js/functions.js b/js/functions.js
index 5e6e9d6..efc8319 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1249,7 +1249,8 @@ function addDateTimePicker() {
PMA_addDatepicker($(this), type, {
showMillisec: showMillisec,
showMicrosec: showMicrosec,
- timeFormat: timeFormat
+ timeFormat: timeFormat,
+ firstDay: 1
});
});
}