diff --git a/swad_changelog.h b/swad_changelog.h index fcf5ae2f..e95868e5 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -348,10 +348,11 @@ En OpenSWAD: ps2pdf source.ps destination.pdf */ -#define Log_PLATFORM_VERSION "SWAD 18.18.1 (2018-11-16)" +#define Log_PLATFORM_VERSION "SWAD 18.18.2 (2018-11-16)" #define CSS_FILE "swad18.4.css" #define JS_FILE "swad17.17.1.js" /* + Version 18.18.2: Nov 16, 2018 Hierarchy menu shown in list of countries. (237028 lines) Version 18.18.1: Nov 16, 2018 Changes in icons related to courses. (237023 lines) Copy the following icon to icon public directory: sudo cp crs64x64.gif /var/www/html/swad/icon/ diff --git a/swad_country.c b/swad_country.c index 2ef69aa3..5b96cdd3 100644 --- a/swad_country.c +++ b/swad_country.c @@ -519,6 +519,9 @@ void Cty_ListCountries2 (void) extern const char *Txt_Country_unspecified; unsigned NumCty; + /***** Write menu to select country *****/ + Hie_WriteMenuHierarchy (); + /***** Start box and table *****/ Box_StartBoxTable (NULL,Txt_Countries,Cty_PutIconsListingCountries, Hlp_SYSTEM_Countries,Box_NOT_CLOSABLE,2); @@ -956,6 +959,9 @@ void Cty_EditCountries (void) Gbl.Ctys.SelectedOrder = Cty_ORDER_BY_COUNTRY; Cty_GetListCountries (Cty_GET_EXTRA_DATA); + /***** Write menu to select country *****/ + Hie_WriteMenuHierarchy (); + /***** Start box *****/ Box_StartBox (NULL,Txt_Countries,Cty_PutIconsEditingCountries, Hlp_SYSTEM_Countries,Box_NOT_CLOSABLE);