Version 16.70.1

This commit is contained in:
Antonio Cañas Vargas 2016-11-24 20:19:54 +01:00
parent 2881fb5b37
commit d80f6ae343
3 changed files with 10 additions and 10 deletions

View File

@ -172,13 +172,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.70 (2016-11-24)"
#define Log_PLATFORM_VERSION "SWAD 16.70.1 (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.1: Nov 24, 2016 Fixed minor bug in titles of frames. (207545 lines)
Version 16.70: Nov 24, 2016 Changes in permissions to view test results. (207545 lines)
Version 16.69.1: Nov 24, 2016 Contextual help on messages. (207484 lines)
Version 16.69: Nov 23, 2016 Changes in layout of frame title. (207473 lines)

View File

@ -1365,14 +1365,6 @@ void Lay_EndRoundFrameTable (void)
Lay_EndRoundFrame ();
}
void Lay_EndRoundFrame (void)
{
Gbl.Layout.FrameNested--;
fprintf (Gbl.F.Out,"</div>"
"</div>");
}
void Lay_EndRoundFrameTableWithButton (Lay_Button_t Button,const char *TxtButton)
{
fprintf (Gbl.F.Out,"</table>");
@ -1400,6 +1392,13 @@ void Lay_EndRoundFrameWithButton (Lay_Button_t Button,const char *TxtButton)
break;
}
Lay_EndRoundFrame ();
}
void Lay_EndRoundFrame (void)
{
Gbl.Layout.FrameNested--;
fprintf (Gbl.F.Out,"</div>"
"</div>");
}

View File

@ -107,9 +107,9 @@ void Lay_StartRoundFrame (const char *Width,const char *Title,
const char *HelpLink);
void Lay_StartRoundFrameTableShadow (const char *Width,unsigned CellPadding);
void Lay_EndRoundFrameTable (void);
void Lay_EndRoundFrame (void);
void Lay_EndRoundFrameTableWithButton (Lay_Button_t Button,const char *TxtButton);
void Lay_EndRoundFrameWithButton (Lay_Button_t Button,const char *TxtButton);
void Lay_EndRoundFrame (void);
void Lay_ShowErrorAndExit (const char *Message);
void Lay_ShowAlert (Lay_AlertType_t MsgType,const char *Message);