diff --git a/swad_changelog.h b/swad_changelog.h index bc5e8f2d6..cf8f5ca31 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -143,13 +143,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 16.7.2 (2016-10-02)" +#define Log_PLATFORM_VERSION "SWAD 16.7.3 (2016-10-03)" #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.3: Oct 03, 2016 User's ID is removed from user's usage report. (205533 lines) 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) diff --git a/swad_report.c b/swad_report.c index 7560e3338..4a16d4608 100644 --- a/swad_report.c +++ b/swad_report.c @@ -120,7 +120,6 @@ static void Rep_ShowOrPrintMyUsageReport (Rep_SeeOrPrint_t SeeOrPrint) extern const char *Txt_Name; extern const char *Txt_TAGLINE; extern const char *Txt_Personal_information; - extern const char *Txt_ID; extern const char *Txt_Email; extern const char *Txt_Country; extern const char *Txt_Institution; @@ -147,7 +146,6 @@ static void Rep_ShowOrPrintMyUsageReport (Rep_SeeOrPrint_t SeeOrPrint) extern const char *Txt_Courses; extern const char *Txt_historical_log; extern const char *Txt_Hits; - unsigned NumID; char CtyName[Cty_MAX_BYTES_COUNTRY_NAME+1]; struct Institution Ins; struct UsrFigures UsrFigures; @@ -227,19 +225,6 @@ static void Rep_ShowOrPrintMyUsageReport (Rep_SeeOrPrint_t SeeOrPrint) Txt_Name, Gbl.Usrs.Me.UsrDat.FullName); - /* User's ID */ - fprintf (Gbl.F.Out,"
  • %s:", - Txt_ID); - for (NumID = 0; - NumID < Gbl.Usrs.Me.UsrDat.IDs.Num; - NumID++) - { - if (NumID) - fprintf (Gbl.F.Out,","); - fprintf (Gbl.F.Out," %s",Gbl.Usrs.Me.UsrDat.IDs.List[NumID].ID); - } - fprintf (Gbl.F.Out,"
  • "); - /* User's e-mail */ fprintf (Gbl.F.Out,"
  • %s: %s
  • ", Txt_Email,