Version 16.7.2

This commit is contained in:
Antonio Cañas Vargas 2016-10-02 23:38:40 +02:00
parent bba71c0ea1
commit 56a84e533f
2 changed files with 9 additions and 8 deletions

View File

@ -143,13 +143,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.7.1 (2016-10-02)"
#define Log_PLATFORM_VERSION "SWAD 16.7.2 (2016-10-02)"
#define CSS_FILE "swad15.229.css"
#define JS_FILE "swad15.238.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.7.2: Oct 02, 2016 Change in order of hits in user's usage report. (205546 lines)
Version 16.7.1: Oct 02, 2016 Fixed bugs in user's usage report.
Removed unused code in user's usage report. (205545 lines)
Version 16.7: Oct 02, 2016 Improvements user's usage report. (205645 lines)

View File

@ -392,6 +392,13 @@ static void Rep_ShowOrPrintMyUsageReport (Rep_SeeOrPrint_t SeeOrPrint)
fprintf (Gbl.F.Out,"</ul>");
/***** Global hits *****/
fprintf (Gbl.F.Out,"<h3>%s</h3>",Txt_Hits);
Rep_ShowMyHitsPerYear (true,-1L,Rol_UNKNOWN,
UsrFigures.FirstClickTimeUTC,
&tm_FirstClickTime,
0);
/***** Current courses *****/
fprintf (Gbl.F.Out,"<h3>%s",Txt_Courses);
if (StrCurrentDate[0])
@ -427,13 +434,6 @@ static void Rep_ShowOrPrintMyUsageReport (Rep_SeeOrPrint_t SeeOrPrint)
fprintf (Gbl.F.Out,"</ul>");
/***** Global hits *****/
fprintf (Gbl.F.Out,"<h3>%s</h3>",Txt_Hits);
Rep_ShowMyHitsPerYear (true,-1L,Rol_UNKNOWN,
UsrFigures.FirstClickTimeUTC,
&tm_FirstClickTime,
0);
/***** End frame *****/
fprintf (Gbl.F.Out,"</div>");
if (SeeOrPrint == Rep_SEE)