From 92a069f0c0599268be5d17f2180740fa87846073 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ca=C3=B1as=20Vargas?= Date: Sun, 13 Nov 2016 15:04:02 +0100 Subject: [PATCH] Version 16.54.15 --- swad_changelog.h | 3 ++- swad_degree.c | 4 +++- swad_help.c | 5 +++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/swad_changelog.h b/swad_changelog.h index b0da7f81e..f3a466685 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -156,13 +156,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 16.54.14 (2016-11-13)" +#define Log_PLATFORM_VERSION "SWAD 16.54.15 (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.15: Nov 13, 2016 Contextual help on degrees. (206823 lines) Version 16.54.14: Nov 13, 2016 Contextual help on centres. (206817 lines) Version 16.54.13: Nov 13, 2016 Contextual help on institutions. (206811 lines) Version 16.54.12: Nov 13, 2016 Contextual help on countries. (206805 lines) diff --git a/swad_degree.c b/swad_degree.c index 0b931dc25..0ae335bba 100644 --- a/swad_degree.c +++ b/swad_degree.c @@ -1613,6 +1613,7 @@ static void Deg_CreateDegree (struct Degree *Deg,unsigned Status) static void Deg_ListDegrees (void) { + extern const char *Hlp_CENTRE_Degrees; extern const char *Txt_Degrees_of_CENTRE_X; extern const char *Txt_No_degrees; extern const char *Txt_Create_another_degree; @@ -1621,7 +1622,8 @@ static void Deg_ListDegrees (void) /***** Start frame *****/ sprintf (Gbl.Title,Txt_Degrees_of_CENTRE_X,Gbl.CurrentCtr.Ctr.ShrtName); - Lay_StartRoundFrame (NULL,Gbl.Title,Deg_PutIconsListDegrees,NULL); + Lay_StartRoundFrame (NULL,Gbl.Title, + Deg_PutIconsListDegrees,Hlp_CENTRE_Degrees); if (Gbl.CurrentCtr.Ctr.Degs.Num) // There are degrees in the current centre { diff --git a/swad_help.c b/swad_help.c index eeaa83490..e204aa581 100644 --- a/swad_help.c +++ b/swad_help.c @@ -52,6 +52,11 @@ const char *Hlp_COUNTRY_Institutions = const char *Hlp_INSTITUTION_Centres = "https://github.com/acanas/swad-core/wiki/INSTITUTION.Centres"; +/***** CENTRE tab *****/ + +const char *Hlp_CENTRE_Degrees = + "https://github.com/acanas/swad-core/wiki/CENTRE.Degrees"; + /***** STATS tab *****/ const char *Hlp_STATS_Surveys =