diff --git a/swad_changelog.h b/swad_changelog.h index 82be43748..95b6a0513 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -166,13 +166,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 16.63.3 (2016-11-17)" +#define Log_PLATFORM_VERSION "SWAD 16.63.4 (2016-11-17)" #define CSS_FILE "swad16.60.1.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.63.4: Nov 16, 2016 Contextual help on edition of centres. (207177 lines) Version 16.63.3: Nov 16, 2016 Contextual help on edition of centres. (207174 lines) Version 16.63.2: Nov 16, 2016 Contextual help on edition of degrees. (207171 lines) Version 16.63.1: Nov 16, 2016 Contextual help on edition of courses. (207168 lines) diff --git a/swad_institution.c b/swad_institution.c index a6f9d5926..caeccbd0a 100644 --- a/swad_institution.c +++ b/swad_institution.c @@ -1278,6 +1278,7 @@ void Ins_WriteSelectorOfInstitution (void) static void Ins_ListInstitutionsForEdition (void) { + extern const char *Hlp_COUNTRY_Institutions; extern const char *Txt_Institutions_of_COUNTRY_X; extern const char *Txt_INSTITUTION_STATUS[Ins_NUM_STATUS_TXT]; unsigned NumIns; @@ -1293,7 +1294,7 @@ static void Ins_ListInstitutionsForEdition (void) /***** Write heading *****/ sprintf (Gbl.Title,Txt_Institutions_of_COUNTRY_X, Gbl.CurrentCty.Cty.Name[Gbl.Prefs.Language]); - Lay_StartRoundFrameTable (NULL,Gbl.Title,NULL,NULL,2); + Lay_StartRoundFrameTable (NULL,Gbl.Title,NULL,Hlp_COUNTRY_Institutions,2); Ins_PutHeadInstitutionsForEdition (); /***** Write all the institutions *****/ @@ -2040,6 +2041,7 @@ void Ins_RemoveLogo (void) static void Ins_PutFormToCreateInstitution (void) { + extern const char *Hlp_COUNTRY_Institutions; extern const char *Txt_New_institution_of_COUNTRY_X; extern const char *Txt_INSTITUTION_STATUS[Ins_NUM_STATUS_TXT]; extern const char *Txt_Create_institution; @@ -2058,7 +2060,7 @@ static void Ins_PutFormToCreateInstitution (void) /***** Start of frame *****/ sprintf (Gbl.Title,Txt_New_institution_of_COUNTRY_X, Gbl.CurrentCty.Cty.Name[Gbl.Prefs.Language]); - Lay_StartRoundFrameTable (NULL,Gbl.Title,NULL,NULL,2); + Lay_StartRoundFrameTable (NULL,Gbl.Title,NULL,Hlp_COUNTRY_Institutions,2); /***** Write heading *****/ Ins_PutHeadInstitutionsForEdition ();