Version 15.192.13

This commit is contained in:
Antonio Cañas Vargas 2016-04-13 10:17:20 +02:00
parent abcca2c490
commit 84d16bf97d
2 changed files with 3 additions and 1 deletions

View File

@ -136,13 +136,14 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.192.12 (2016-04-12)" #define Log_PLATFORM_VERSION "SWAD 15.192.13 (2016-04-13)"
#define CSS_FILE "swad15.192.9.css" #define CSS_FILE "swad15.192.9.css"
#define JS_FILE "swad15.190.1.js" #define JS_FILE "swad15.190.1.js"
// Number of lines (includes comments but not blank lines) has been got with the following command: // 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 // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/* /*
Version 15.192.13:Apr 13, 2016 Fixed bug in file upload, reported by Christian Morillas Gutiérrez. (199341 lines)
Version 15.192.12:Apr 12, 2016 Fixed bug in groups reported by user raistmaj in GitHub. (199339 lines) Version 15.192.12:Apr 12, 2016 Fixed bug in groups reported by user raistmaj in GitHub. (199339 lines)
Version 15.192.11:Apr 12, 2016 Image quality in social posts reduced to 50 in order to speed up page loading. Version 15.192.11:Apr 12, 2016 Image quality in social posts reduced to 50 in order to speed up page loading.
Change in layout of message post. (199337 lines) Change in layout of message post. (199337 lines)

View File

@ -247,6 +247,7 @@ struct Param *Fil_StartReceptionOfFile (const char *ParamFile,
if (fread (FileName,sizeof (char),Param->FileName.Length,Gbl.F.Tmp) != if (fread (FileName,sizeof (char),Param->FileName.Length,Gbl.F.Tmp) !=
Param->FileName.Length) Param->FileName.Length)
Lay_ShowErrorAndExit ("Error while getting filename."); Lay_ShowErrorAndExit ("Error while getting filename.");
FileName[Param->FileName.Length] = '\0';
/***** Get MIME type *****/ /***** Get MIME type *****/
/* Check if MIME type exists */ /* Check if MIME type exists */