Version 14.108.3

This commit is contained in:
Antonio Cañas Vargas 2015-04-03 14:55:46 +02:00
parent fa5b52a1d5
commit 84234429b7
3 changed files with 5 additions and 4 deletions

View File

@ -103,11 +103,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.108.2 (2015/04/03)"
#define Log_PLATFORM_VERSION "SWAD 14.108.3 (2015/04/03)"
// 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 14.108.3: Apr 03, 2015 Fixed bug in statistic about institutions. (184144 lines)
Version 14.108.2: Apr 03, 2015 Fixed bug in statistic about institutions. (184142 lines)
Version 14.108.1: Apr 03, 2015 Fixed bug in statistic about institutions. (184137 lines)
Version 14.108: Apr 03, 2015 New statistic (figure) about institutions. (184136 lines)

View File

@ -28,9 +28,9 @@
/** Uncomment one of the following installations of SWAD or create your own **/
/*****************************************************************************/
//#define LOCALHOST_UBUNTU // Comment this line if not applicable
#define LOCALHOST_UBUNTU // Comment this line if not applicable
//#define OPENSWAD_ORG // Comment this line if not applicable
#define SWAD_UGR_ES // Comment this line if not applicable
//#define SWAD_UGR_ES // Comment this line if not applicable
//#define WWW_CEVUNA_UNA_PY // Comment this line if not applicable
/*****************************************************************************/

View File

@ -4771,7 +4771,7 @@ static void Sta_GetAndShowInssOrderedByNumUsrsWhoClaimToBelongToThem (void)
sprintf (Query,"SELECT InsCod,COUNT(*) AS N"
" FROM usr_data"
" WHERE InsCod='%ld'"
" GROUP BY centres.InsCod"
" GROUP BY InsCod"
" ORDER BY N DESC",
Gbl.CurrentIns.Ins.InsCod);
break;