Version 16.54.13

This commit is contained in:
Antonio Cañas Vargas 2016-11-13 14:56:59 +01:00
parent 74f372b6b1
commit ee4b4b0676
3 changed files with 10 additions and 2 deletions

View File

@ -156,13 +156,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.54.12 (2016-11-13)"
#define Log_PLATFORM_VERSION "SWAD 16.54.13 (2016-11-13)"
#define CSS_FILE "swad16.51.css"
#define JS_FILE "swad16.46.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.54.13: Nov 13, 2016 Contextual help on institutions. (? lines)
Version 16.54.12: Nov 13, 2016 Contextual help on countries. (206805 lines)
Version 16.54.11: Nov 13, 2016 Contextual help on my webs / social networks. (206799 lines)
Version 16.54.10: Nov 13, 2016 Contextual help on my institution, centre and department. (206795 lines)

View File

@ -42,6 +42,11 @@
const char *Hlp_SYSTEM_Countries =
"https://github.com/acanas/swad-core/wiki/SYSTEM.Countries";
/***** COUNTRY tab *****/
const char *Hlp_COUNTRY_Institutions =
"https://github.com/acanas/swad-core/wiki/COUNTRY.Institutions";
/***** STATS tab *****/
const char *Hlp_STATS_Surveys =

View File

@ -655,6 +655,7 @@ void Ins_ShowInssOfCurrentCty (void)
static void Ins_ListInstitutions (void)
{
extern const char *Hlp_COUNTRY_Institutions;
extern const char *Txt_Institutions_of_COUNTRY_X;
extern const char *Txt_No_institutions;
extern const char *Txt_Create_another_institution;
@ -663,7 +664,8 @@ static void Ins_ListInstitutions (void)
/***** Start frame *****/
sprintf (Gbl.Title,Txt_Institutions_of_COUNTRY_X,Gbl.CurrentCty.Cty.Name[Gbl.Prefs.Language]);
Lay_StartRoundFrame (NULL,Gbl.Title,Ins_PutIconsListInstitutions,NULL);
Lay_StartRoundFrame (NULL,Gbl.Title,
Ins_PutIconsListInstitutions,Hlp_COUNTRY_Institutions);
if (Gbl.Inss.Num) // There are institutions in the current country
{