Version 16.7.3

This commit is contained in:
Antonio Cañas Vargas 2016-10-03 09:23:30 +02:00
parent 56a84e533f
commit 5d8e4efaa8
2 changed files with 2 additions and 16 deletions

View File

@ -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)

View File

@ -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,"<li>%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,"</li>");
/* User's e-mail */
fprintf (Gbl.F.Out,"<li>%s: %s</li>",
Txt_Email,