Version 16.63.5

This commit is contained in:
Antonio Cañas Vargas 2016-11-17 00:41:57 +01:00
parent 485733ce06
commit ad64ddf7d7
2 changed files with 7 additions and 4 deletions

View File

@ -166,14 +166,15 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.63.4 (2016-11-17)"
#define Log_PLATFORM_VERSION "SWAD 16.63.5 (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.5: Nov 16, 2016 Contextual help on edition of countries. (207180 lines)
Version 16.63.4: Nov 16, 2016 Contextual help on edition of institutions. (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)

View File

@ -1432,13 +1432,14 @@ void Cty_FreeListCountries (void)
static void Cty_ListCountriesForEdition (void)
{
extern const char *Hlp_SYSTEM_Countries;
extern const char *Txt_Countries;
extern const char *Txt_STR_LANG_NAME[1+Txt_NUM_LANGUAGES];
unsigned NumCty;
struct Country *Cty;
Txt_Language_t Lan;
Lay_StartRoundFrameTable (NULL,Txt_Countries,NULL,NULL,2);
Lay_StartRoundFrameTable (NULL,Txt_Countries,NULL,Hlp_SYSTEM_Countries,2);
/***** Table head *****/
Cty_PutHeadCountries ();
@ -1818,6 +1819,7 @@ void Cty_ChangeCtyMapAttribution (void)
static void Cty_PutFormToCreateCountry (void)
{
extern const char *Hlp_SYSTEM_Countries;
extern const char *Txt_New_country;
extern const char *Txt_STR_LANG_NAME[1+Txt_NUM_LANGUAGES];
extern const char *Txt_STR_LANG_ID[1+Txt_NUM_LANGUAGES];
@ -1831,7 +1833,7 @@ static void Cty_PutFormToCreateCountry (void)
Act_FormStart (ActNewCty);
/***** Start of frame *****/
Lay_StartRoundFrameTable (NULL,Txt_New_country,NULL,NULL,2);
Lay_StartRoundFrameTable (NULL,Txt_New_country,NULL,Hlp_SYSTEM_Countries,2);
/***** Write heading *****/
Cty_PutHeadCountries ();