Version 14.109.1

This commit is contained in:
Antonio Cañas Vargas 2015-04-06 23:29:41 +02:00
parent 66bb166ecc
commit ae868d7793
2 changed files with 4 additions and 3 deletions

View File

@ -103,11 +103,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.109 (2015/04/06)"
#define Log_PLATFORM_VERSION "SWAD 14.109.1 (2015/04/06)"
// 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 14.109.1: Apr 06, 2015 Changed text of button in course info. (184325 lines)
Version 14.109: Apr 06, 2015 Links in file browsers can be uploaded with a name. (184324 lines)
Version 14.108.4: Apr 04, 2015 Changes in statistic about institutions. (184267 lines)
Version 14.108.3: Apr 03, 2015 Fixed bug in statistic about institutions. (184144 lines)

View File

@ -1695,7 +1695,7 @@ int Inf_WritePlainTextIntoHTMLBuffer (Inf_InfoType_t InfoType,char **HTMLBuffer)
void Inf_EditPlainTxtInfo (void)
{
extern const char *Txt_INFO_TITLE[Inf_NUM_INFO_TYPES];
extern const char *Txt_Send;
extern const char *Txt_Save;
Inf_InfoType_t InfoType = Inf_AsignInfoType ();
char Txt[Cns_MAX_BYTES_LONG_TEXT+1];
@ -1725,7 +1725,7 @@ void Inf_EditPlainTxtInfo (void)
// fprintf (Gbl.F.Out,"<br />");
/***** Send and undo buttons *****/
Lay_PutCreateButton (Txt_Send);
Lay_PutConfirmButton (Txt_Save);
Act_FormEnd ();
}