Version 16.46.1

This commit is contained in:
Antonio Cañas Vargas 2016-11-01 12:43:17 +01:00
parent 664a18ccab
commit 436bc41c4f
2 changed files with 6 additions and 3 deletions

View File

@ -218,7 +218,7 @@ function setTZ (id) {
// For example, if your time zone is GMT+2, -120 will be returned
function setTZname (id) {
var FormTZname = document.getElementById(id);
var tz = jstz.determine(); // Determines the time zone of the browser client
var tz = jstz.determine(); // Determines the time zone of the browser client
FormTZname.value = tz.name(); // Returns the name of the time zone eg "Europe/Berlin"
}
@ -279,6 +279,7 @@ function setDateRange (d) {
break;
}
document.getElementById('StartMonth' ).options[Mon-1].selected = true;
adjustDateForm ('Start'); // Adjust date form correcting days in the month
document.getElementById('StartDay' ).options[Day-1].selected = true;
document.getElementById('StartHour' ).options[0 ].selected = true;
document.getElementById('StartMinute').options[0 ].selected = true;
@ -292,6 +293,7 @@ function setDateRange (d) {
break;
}
document.getElementById('EndMonth' ).options[Mon-1].selected = true;
adjustDateForm ('End'); // Adjust date form correcting days in the month
document.getElementById('EndDay' ).options[Day-1].selected = true;
document.getElementById('EndHour' ).options[23 ].selected = true;
document.getElementById('EndMinute').options[59 ].selected = true;

View File

@ -154,13 +154,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.46 (2016-10-29)"
#define Log_PLATFORM_VERSION "SWAD 16.46.1 (2016-11-01)"
#define CSS_FILE "swad16.32.1.css"
#define JS_FILE "swad15.238.1.js"
#define JS_FILE "swad16.46.1.js"
// Number of lines (includes comments but not blank lines) has been got with the following command:
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/*
Version 16.46.1: Nov 01, 2016 Fixed bugs in javascript function to set a date range to a given day. (206035 lines)
Version 16.46: Oct 29, 2016 Fixed bugs in surveys.
View only the surveys of my groups. (206032 lines)
Version 16.45.10: Oct 28, 2016 Messages translated. (205995 lines)