Version 18.18.2

This commit is contained in:
Antonio Cañas Vargas 2018-11-16 01:05:56 +01:00
parent a35e694a4f
commit c924d5e20e
2 changed files with 8 additions and 1 deletions

View File

@ -348,10 +348,11 @@ En OpenSWAD:
ps2pdf source.ps destination.pdf 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 CSS_FILE "swad18.4.css"
#define JS_FILE "swad17.17.1.js" #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) Version 18.18.1: Nov 16, 2018 Changes in icons related to courses. (237023 lines)
Copy the following icon to icon public directory: Copy the following icon to icon public directory:
sudo cp crs64x64.gif /var/www/html/swad/icon/ sudo cp crs64x64.gif /var/www/html/swad/icon/

View File

@ -519,6 +519,9 @@ void Cty_ListCountries2 (void)
extern const char *Txt_Country_unspecified; extern const char *Txt_Country_unspecified;
unsigned NumCty; unsigned NumCty;
/***** Write menu to select country *****/
Hie_WriteMenuHierarchy ();
/***** Start box and table *****/ /***** Start box and table *****/
Box_StartBoxTable (NULL,Txt_Countries,Cty_PutIconsListingCountries, Box_StartBoxTable (NULL,Txt_Countries,Cty_PutIconsListingCountries,
Hlp_SYSTEM_Countries,Box_NOT_CLOSABLE,2); Hlp_SYSTEM_Countries,Box_NOT_CLOSABLE,2);
@ -956,6 +959,9 @@ void Cty_EditCountries (void)
Gbl.Ctys.SelectedOrder = Cty_ORDER_BY_COUNTRY; Gbl.Ctys.SelectedOrder = Cty_ORDER_BY_COUNTRY;
Cty_GetListCountries (Cty_GET_EXTRA_DATA); Cty_GetListCountries (Cty_GET_EXTRA_DATA);
/***** Write menu to select country *****/
Hie_WriteMenuHierarchy ();
/***** Start box *****/ /***** Start box *****/
Box_StartBox (NULL,Txt_Countries,Cty_PutIconsEditingCountries, Box_StartBox (NULL,Txt_Countries,Cty_PutIconsEditingCountries,
Hlp_SYSTEM_Countries,Box_NOT_CLOSABLE); Hlp_SYSTEM_Countries,Box_NOT_CLOSABLE);