diff --git a/swad_attendance.c b/swad_attendance.c index b82d27671..295dbaab5 100644 --- a/swad_attendance.c +++ b/swad_attendance.c @@ -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); diff --git a/swad_changelog.h b/swad_changelog.h index 7375a8d65..06053bf6b 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -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)