Version 16.54.19

This commit is contained in:
Antonio Cañas Vargas 2016-11-13 16:44:43 +01:00
parent 367dca3914
commit 4fd10317b2
3 changed files with 10 additions and 5 deletions

View File

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

View File

@ -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 *****/

View File

@ -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,"<div class=\"FRAME_TABLE_TITLE CENTER_MIDDLE\">");