Version 16.194.16

This commit is contained in:
Antonio Cañas Vargas 2017-04-28 13:38:23 +02:00
parent 435219663c
commit 88c7fa839a
2 changed files with 11 additions and 12 deletions

View File

@ -221,13 +221,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.194.15 (2017-04-28)"
#define Log_PLATFORM_VERSION "SWAD 16.194.16 (2017-04-28)"
#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.194.16:Apr 28, 2017 Changed dialog to remove a survey question. (218370 lines)
Version 16.194.15:Apr 28, 2017 Changed dialog to remove another user's photo.
Fixed bug when uploading photo. (218370 lines)
Version 16.194.14:Apr 28, 2017 Changed dialog to remove a group. (218368 lines)

View File

@ -2648,7 +2648,7 @@ static void Svy_ShowFormEditOneQst (long SvyCod,struct SurveyQuestion *SvyQst,
if (SvyQst->QstCod > 0) // If the question already has assigned a code
{
/* Parameters for contextual icon */
Gbl.Svys.SvyCodToEdit = SvyCod;
Gbl.Svys.SvyCodToEdit = SvyCod;
Gbl.Svys.SvyQstCodToEdit = SvyQst->QstCod;
sprintf (Gbl.Title,"%s %u",
@ -3535,19 +3535,17 @@ void Svy_RequestRemoveQst (void)
/* Get question index */
SvyQst.QstInd = Svy_GetQstIndFromQstCod (SvyQst.QstCod);
/***** Start form *****/
Act_FormStart (ActRemSvyQst);
Svy_PutParamSvyCod (SvyCod);
Svy_PutParamQstCod (SvyQst.QstCod);
/***** Ask for confirmation of removing *****/
/***** Show question and button to remove question *****/
/* Start alert */
sprintf (Gbl.Message,Txt_Do_you_really_want_to_remove_the_question_X,
(unsigned long) (SvyQst.QstInd + 1));
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
Lay_PutRemoveButton (Txt_Remove_question);
Lay_ShowAlertAndButton1 (Lay_QUESTION,Gbl.Message);
/***** End form *****/
Act_FormEnd ();
/* End alert */
Gbl.Svys.SvyCodToEdit = SvyCod;
Gbl.Svys.SvyQstCodToEdit = SvyQst.QstCod;
Lay_ShowAlertAndButton2 (ActRemSvyQst,NULL,Svy_PutParamsRemoveOneQst,
Lay_REMOVE_BUTTON,Txt_Remove_question);
/***** Show current survey *****/
Svy_ShowOneSurvey (SvyCod,&SvyQst,true);