diff --git a/swad_changelog.h b/swad_changelog.h index be51eedb1..aab97c7bb 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -156,13 +156,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 16.54.18 (2016-11-13)" +#define Log_PLATFORM_VERSION "SWAD 16.54.19 (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.19: Nov 13, 2016 Contextual help on institution information. (? lines) Version 16.54.18: Nov 13, 2016 Contextual help on country information. Fixed bug in country information. (206811 lines) Version 16.54.17: Nov 13, 2016 Code refactoring in contextual help links. (206804 lines) diff --git a/swad_help.c b/swad_help.c index 0fb033aa7..948408730 100644 --- a/swad_help.c +++ b/swad_help.c @@ -50,7 +50,8 @@ const char *Hlp_COUNTRY_Institutions = WIKI "COUNTRY.Institutions"; /***** INSTITUTION tab *****/ -const char *Hlp_INSTITUTION_Centres = WIKI "INSTITUTION.Centres"; +const char *Hlp_INSTITUTION_Information = WIKI "INSTITUTION.Information"; +const char *Hlp_INSTITUTION_Centres = WIKI "INSTITUTION.Centres"; /***** CENTRE tab *****/ diff --git a/swad_institution.c b/swad_institution.c index 33381be5e..d52d61157 100644 --- a/swad_institution.c +++ b/swad_institution.c @@ -271,6 +271,7 @@ void Ins_PrintConfiguration (void) static void Ins_Configuration (bool PrintView) { + extern const char *Hlp_INSTITUTION_Information; extern const char *The_ClassForm[The_NUM_THEMES]; extern const char *Txt_Country; extern const char *Txt_Institution; @@ -292,9 +293,11 @@ static void Ins_Configuration (bool PrintView) if (Gbl.CurrentIns.Ins.InsCod > 0) { /***** Start frame *****/ - Lay_StartRoundFrame (NULL,NULL,PrintView ? NULL : - Ins_PutIconsToPrintAndUpload, - NULL); + Lay_StartRoundFrame (NULL,NULL, + PrintView ? NULL : + Ins_PutIconsToPrintAndUpload, + PrintView ? NULL : + Hlp_INSTITUTION_Information); /***** Title *****/ fprintf (Gbl.F.Out,"
");