diff --git a/swad_changelog.h b/swad_changelog.h index f3a466685..1097000dc 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -156,13 +156,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 16.54.15 (2016-11-13)" +#define Log_PLATFORM_VERSION "SWAD 16.54.16 (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.16: Nov 13, 2016 Contextual help on courses. (206829 lines) 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) diff --git a/swad_course.c b/swad_course.c index 1eaeee499..5cbef0782 100644 --- a/swad_course.c +++ b/swad_course.c @@ -1173,6 +1173,7 @@ void Crs_WriteSelectorMyCourses (void) static void Crs_ListCourses (void) { + extern const char *Hlp_DEGREE_Courses; extern const char *Txt_Courses_of_DEGREE_X; extern const char *Txt_No_courses; extern const char *Txt_Create_another_course; @@ -1181,7 +1182,8 @@ static void Crs_ListCourses (void) /***** Start frame *****/ sprintf (Gbl.Title,Txt_Courses_of_DEGREE_X,Gbl.CurrentDeg.Deg.ShrtName); - Lay_StartRoundFrame (NULL,Gbl.Title,Crs_PutIconsListCourses,NULL); + Lay_StartRoundFrame (NULL,Gbl.Title, + Crs_PutIconsListCourses,Hlp_DEGREE_Courses); if (Gbl.CurrentDeg.NumCrss) // There are courses in the current degree { diff --git a/swad_help.c b/swad_help.c index e204aa581..27f1c52d4 100644 --- a/swad_help.c +++ b/swad_help.c @@ -57,6 +57,11 @@ const char *Hlp_INSTITUTION_Centres = const char *Hlp_CENTRE_Degrees = "https://github.com/acanas/swad-core/wiki/CENTRE.Degrees"; +/***** DEGREE tab *****/ + +const char *Hlp_DEGREE_Courses = + "https://github.com/acanas/swad-core/wiki/DEGREE.Courses"; + /***** STATS tab *****/ const char *Hlp_STATS_Surveys =