Version 15.249.2

This commit is contained in:
Antonio Cañas Vargas 2016-09-08 19:21:25 +02:00
parent a4565e912a
commit b630d06d71
2 changed files with 10 additions and 8 deletions

View File

@ -135,13 +135,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.249.1 (2016-09-08)"
#define Log_PLATFORM_VERSION "SWAD 15.249.2 (2016-09-08)"
#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 15.249.2: Sep 08, 2016 Shared record card and details of user's profile are shown in uswer's usage report. (203978 lines)
Version 15.249.1: Sep 08, 2016 Removed lines with NULL values in swad_text.c. (203977 lines)
Version 15.249: Sep 08, 2016 New option Statistics > Report. Not implemented. (204341 lines)
Version 15.248.3: Sep 07, 2016 Fixed bug related to attendance events in web service, reported by Rubén Martín Hidalgo. (? lines)

View File

@ -29,12 +29,8 @@
// #include <stdio.h> // For sprintf
// #include <string.h> // For string functions
// #include "swad_database.h"
// #include "swad_follow.h"
// #include "swad_global.h"
// #include "swad_notification.h"
// #include "swad_profile.h"
// #include "swad_user.h"
#include "swad_global.h"
#include "swad_profile.h"
/*****************************************************************************/
/****************************** Public constants *****************************/
@ -52,7 +48,7 @@
/************** External global variables from others modules ****************/
/*****************************************************************************/
// extern struct Globals Gbl;
extern struct Globals Gbl;
/*****************************************************************************/
/************************* Internal global variables *************************/
@ -68,4 +64,9 @@
void Rep_ShowMyUsageReport (void)
{
/***** Common record *****/
Rec_ShowSharedUsrRecord (Rec_RECORD_PUBLIC,&Gbl.Usrs.Me.UsrDat);
/***** Show details of user's profile *****/
Prf_ShowDetailsUserProfile (&Gbl.Usrs.Me.UsrDat);
}