Version 17.5.2

This commit is contained in:
Antonio Cañas Vargas 2017-09-21 12:52:01 +02:00
parent 6bc7833226
commit 8e2d588821
2 changed files with 14 additions and 11 deletions

View File

@ -252,14 +252,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 17.5.1 (2017-09-21)"
#define Log_PLATFORM_VERSION "SWAD 17.5.2 (2017-09-21)"
#define CSS_FILE "swad17.0.css"
#define JS_FILE "swad16.206.3.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 17.5.2: Sep 21, 2017 Do not display users when creating a new project. (? lines)
Version 17.5.2: Sep 21, 2017 Do not display users when creating a new project. (230270 lines)
Version 17.5.1: Sep 21, 2017 Fixed bug when removing a project. (230267 lines)
Version 17.5: Sep 21, 2017 Users can be added to a project. (230250 lines)
Version 17.4.3: Sep 21, 2017 Changes in listing and edition of projects. (230222 lines)

View File

@ -1456,15 +1456,18 @@ static void Prj_RequestCreatOrEditPrj (long PrjCod)
Act_FormEnd ();
/***** Project members *****/
Box_StartBoxTable (NULL,Txt_Project_members,NULL,
NULL,Box_NOT_CLOSABLE,2);
Prj_ShowOneProjectUsrsRow (&Prj,Prj_EDIT_ONE_PROJECT,
Txt_Tutors,
Prj_ROLE_TUT); // Tutors
Prj_ShowOneProjectUsrsRow (&Prj,Prj_EDIT_ONE_PROJECT,
Txt_ROLES_PLURAL_Abc[Rol_STD][Usr_SEX_UNKNOWN],
Prj_ROLE_STD); // Students
Box_EndBoxTable ();
if (!ItsANewProject) // Existing project
{
Box_StartBoxTable (NULL,Txt_Project_members,NULL,
NULL,Box_NOT_CLOSABLE,2);
Prj_ShowOneProjectUsrsRow (&Prj,Prj_EDIT_ONE_PROJECT,
Txt_Tutors,
Prj_ROLE_TUT); // Tutors
Prj_ShowOneProjectUsrsRow (&Prj,Prj_EDIT_ONE_PROJECT,
Txt_ROLES_PLURAL_Abc[Rol_STD][Usr_SEX_UNKNOWN],
Prj_ROLE_STD); // Students
Box_EndBoxTable ();
}
/***** End box *****/
Box_EndBox ();