diff --git a/swad_changelog.h b/swad_changelog.h index 2da5f81c1..c69a1a731 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -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) diff --git a/swad_info.c b/swad_info.c index 067de8a3d..559175bf6 100644 --- a/swad_info.c +++ b/swad_info.c @@ -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,"
"); /***** Send and undo buttons *****/ - Lay_PutCreateButton (Txt_Send); + Lay_PutConfirmButton (Txt_Save); Act_FormEnd (); }