Version19.236.4

This commit is contained in:
acanas 2020-05-18 14:58:41 +02:00
parent 586d77eb71
commit c14a6aa474
3 changed files with 8 additions and 6 deletions

View File

@ -153,12 +153,10 @@ function writeLocalDateHMSFromUTC (id,TimeUTC,DateFormat,Separator,StrToday,
if (WriteWeekDay) {
DayOfWeek = d.getDay();
DayOfWeek = (DayOfWeek == 0) ? 6 : DayOfWeek - 1;
StrDate = StrDate + Separator + DAYS[DayOfWeek];
StrDate += Separator + DAYS[DayOfWeek];
}
StrDate += Separator;
}
else if (WriteWeekDay)
StrDate = Separator;
StrDate = StrDate + Separator;
/* Set HH:MM:SS */
StrHou = '';

View File

@ -557,10 +557,11 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 19.236.3 (2020-05-18)"
#define Log_PLATFORM_VERSION "SWAD 19.236.4 (2020-05-18)"
#define CSS_FILE "swad19.230.1.css"
#define JS_FILE "swad19.230.3.js"
#define JS_FILE "swad19.236.4.js"
/*
Version 19.236.4: May 18, 2020 Fixed minor bug in dates. (301244 lines)
Version 19.236.3: May 18, 2020 Number of players in a match now is calculated as number of users who have result, even in blank. (301243 lines)
Version 19.236.2: May 18, 2020 Fixed bug in matches, reported by Javier Fernández Baldomero. (301241 lines)
Version 19.236.1: May 18, 2020 Fixed bugs in exam results. (301205 lines)

View File

@ -6428,6 +6428,7 @@ static void Brw_WriteDatesAssignment (void)
static unsigned UniqueId = 0;
char *Id;
/***** Begin table cell *****/
HTM_TD_Begin ("colspan=\"2\" class=\"%s RM COLOR%u\"",
Gbl.FileBrowser.Asg.Open ? "ASG_LST_DATE_GREEN" :
"ASG_LST_DATE_RED",
@ -6462,6 +6463,8 @@ static void Brw_WriteDatesAssignment (void)
}
else
HTM_TxtF (" (%s)",Txt_unknown_assignment);
/***** End table cell *****/
HTM_TD_End ();
}