Version 16.195.5

This commit is contained in:
Antonio Cañas Vargas 2017-04-29 20:27:58 +02:00
parent e9c5a55534
commit 9c77c123b6
2 changed files with 5 additions and 5 deletions

View File

@ -223,13 +223,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.195.4 (2017-04-29)"
#define Log_PLATFORM_VERSION "SWAD 16.195.5 (2017-04-29)"
#define CSS_FILE "swad16.193.4.css"
#define JS_FILE "swad16.181.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.195.5: Apr 29, 2017 Changes in layout of edition of groups. (218513 lines)
Version 16.195.4: Apr 29, 2017 Changes in layout of edition of groups. (218513 lines)
Version 16.195.3: Apr 29, 2017 Add plus icon in box "Groups" when editing groups. (218537 lines)
Version 16.195.2: Apr 29, 2017 Add plus icon in box "Types of group" when editing groups. (218512 lines)

View File

@ -2301,7 +2301,6 @@ static void Grp_PutFormToCreateGroupType (void)
static void Grp_PutFormToCreateGroup (void)
{
extern const char *Hlp_USERS_Groups;
extern const char *Txt_New_group;
extern const char *Txt_Group_closed;
extern const char *Txt_File_zones_disabled;
@ -2313,7 +2312,7 @@ static void Grp_PutFormToCreateGroup (void)
Act_FormStartAnchor (ActNewGrp,Grp_SECTION_GROUPS);
/***** Start of frame *****/
Lay_StartRoundFrameTable (NULL,Txt_New_group,NULL,Hlp_USERS_Groups,2);
Lay_StartRoundFrameTable (NULL,Txt_New_group,NULL,NULL,2);
/***** Write heading *****/
Grp_WriteHeadingGroups ();
@ -3904,8 +3903,8 @@ void Grp_ChangeGroupType (void)
/***** Show the form again *****/
Gbl.CurrentCrs.Grps.GrpTyp.GrpTypCod = NewGrpTypCod;
Grp_ReqEditGroupsInternal0 ();
Grp_ReqEditGroupsInternal1 (AlertType,Gbl.Message);
Grp_ReqEditGroupsInternal2 (Lay_INFO,NULL);
Grp_ReqEditGroupsInternal1 (Lay_INFO,NULL);
Grp_ReqEditGroupsInternal2 (AlertType,Gbl.Message);
}
/*****************************************************************************/