Version 16.70.5

This commit is contained in:
Antonio Cañas Vargas 2016-11-24 22:54:57 +01:00
parent aa65ccad38
commit bff6e25886
2 changed files with 10 additions and 9 deletions

View File

@ -2592,6 +2592,10 @@ void Usr_ReqListStdsAttendanceCrs (void)
and preference about view photos *****/
Usr_GetAndUpdatePrefsAboutUsrList ();
/***** Start frame *****/
Lay_StartRoundFrame (NULL,Txt_ROLES_PLURAL_Abc[Rol_STUDENT][Usr_SEX_UNKNOWN],
NULL,NULL);
/***** Form to select groups *****/
Grp_ShowFormToSelectSeveralGroups (ActReqLstStdAtt);
@ -2606,10 +2610,6 @@ void Usr_ReqListStdsAttendanceCrs (void)
Usr_GetListsSelectedUsrsCods ();
/***** Draw a class photo with students of the course *****/
/* Start frame */
Lay_StartRoundFrame (NULL,Txt_ROLES_PLURAL_Abc[Rol_STUDENT][Usr_SEX_UNKNOWN],
NULL,NULL);
/* Form to select type of list used for select several users */
Usr_ShowFormsToSelectUsrListType (ActReqLstStdAtt);
@ -2628,9 +2628,6 @@ void Usr_ReqListStdsAttendanceCrs (void)
/* End form */
Act_FormEnd ();
/* End frame */
Lay_EndRoundFrame ();
/***** Free memory used by list of selected users' codes *****/
Usr_FreeListsSelectedUsrsCods ();
}
@ -2638,6 +2635,9 @@ void Usr_ReqListStdsAttendanceCrs (void)
else
Usr_ShowWarningNoUsersFound (Rol_STUDENT);
/***** End frame *****/
Lay_EndRoundFrame ();
/***** Free memory for students list *****/
Usr_FreeUsrsList (Rol_STUDENT);

View File

@ -172,14 +172,15 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.70.4 (2016-11-24)"
#define Log_PLATFORM_VERSION "SWAD 16.70.5 (2016-11-24)"
#define CSS_FILE "swad16.69.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.70.4: Nov 24, 2016 Changes in layout of students' list. (? lines)
Version 16.70.5: Nov 24, 2016 Changes in layout of attendance list. (207549 lines)
Version 16.70.4: Nov 24, 2016 Changes in layout of students' list. (207547 lines)
Version 16.70.3: Nov 24, 2016 Changes in layout of selection of students to view homework. (207547 lines)
Version 16.70.2: Nov 24, 2016 Changes in layout of course stats. (207546 lines)
Version 16.70.1: Nov 24, 2016 Fixed minor bug in titles of frames. (207545 lines)