Version 16.54.21

This commit is contained in:
Antonio Cañas Vargas 2016-11-13 16:55:27 +01:00
parent 2075d57bcb
commit e3b0d6b021
3 changed files with 10 additions and 5 deletions

View File

@ -156,13 +156,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.54.20 (2016-11-13)"
#define Log_PLATFORM_VERSION "SWAD 16.54.21 (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.21: Nov 13, 2016 Contextual help on degree information. (206826 lines)
Version 16.54.20: Nov 13, 2016 Contextual help on centre information. (206821 lines)
Version 16.54.19: Nov 13, 2016 Contextual help on institution information. (206816 lines)
Version 16.54.18: Nov 13, 2016 Contextual help on country information.

View File

@ -291,6 +291,7 @@ void Deg_PrintConfiguration (void)
static void Deg_Configuration (bool PrintView)
{
extern const char *Hlp_DEGREE_Information;
extern const char *The_ClassForm[The_NUM_THEMES];
extern const char *Txt_Centre;
extern const char *Txt_Degree;
@ -308,9 +309,11 @@ static void Deg_Configuration (bool PrintView)
if (Gbl.CurrentDeg.Deg.DegCod > 0)
{
/***** Start frame *****/
Lay_StartRoundFrame (NULL,NULL,PrintView ? NULL :
Deg_PutIconsToPrintAndUpload,
NULL);
Lay_StartRoundFrame (NULL,NULL,
PrintView ? NULL :
Deg_PutIconsToPrintAndUpload,
PrintView ? NULL :
Hlp_DEGREE_Information);
/***** Title *****/
fprintf (Gbl.F.Out,"<div class=\"FRAME_TABLE_TITLE CENTER_MIDDLE\">");

View File

@ -60,7 +60,8 @@ const char *Hlp_CENTRE_Degrees = WIKI "CENTRE.Degrees";
/***** DEGREE tab *****/
const char *Hlp_DEGREE_Courses = WIKI "DEGREE.Courses";
const char *Hlp_DEGREE_Information = WIKI "DEGREE.Information";
const char *Hlp_DEGREE_Courses = WIKI "DEGREE.Courses";
/***** STATS tab *****/