Version 18.8.1

This commit is contained in:
Antonio Cañas Vargas 2018-10-25 13:15:53 +02:00
parent 40a532568b
commit 75530780eb
5 changed files with 6 additions and 3 deletions

View File

@ -25,6 +25,8 @@
/*********************************** Headers *********************************/
/*****************************************************************************/
#define _GNU_SOURCE // For asprintf
#include <stdio.h> // For asprintf
#include <string.h> // For string functions
#include "swad_account.h"

View File

@ -359,7 +359,7 @@ ps2pdf source.ps destination.pdf
#define CSS_FILE "swad18.4.css"
#define JS_FILE "swad17.17.1.js"
/*
Version 18.8.1: Oct 25, 2018 Fix bug in password, reported by Francisco A. Ocaña. (238044 lines)
Version 18.8.1: Oct 25, 2018 Fixed bug in password, reported by Francisco A. Ocaña. (238047 lines)
Version 18.8: Oct 25, 2018 New internal functions to build database queries. (238043 lines)
Version 18.7.42: Oct 25, 2018 Some sprintf for database queries changed by asprintf. (238146 lines)
Version 18.7.41: Oct 24, 2018 Some sprintf for database queries changed by asprintf. (238125 lines)

View File

@ -29,7 +29,9 @@
#define _GNU_SOURCE // For vasprintf
#include <linux/stddef.h> // For NULL
#include <mysql/mysql.h> // To access MySQL databases
#include <stdarg.h> // For va_start, va_end
#include <stdio.h> // For FILE, fprintf, vasprintf
#include <stdlib.h> // For free
#include "swad_config.h"
#include "swad_database.h"

View File

@ -356,7 +356,7 @@ void Not_ShowNotices (Not_Listing_t TypeNoticesListing)
extern const char *Txt_All_notices;
extern const char *Txt_Notices;
extern const char *Txt_No_notices;
char *Query;
char *Query = NULL;
MYSQL_RES *mysql_res;
MYSQL_ROW row;
char StrWidth[10 + 2 + 1];

View File

@ -322,7 +322,6 @@ void Ntf_ShowMyNotifications (void)
extern const char *Txt_NOTIFICATION_STATUS[Ntf_NUM_STATUS_TXT];
extern const char *Txt_You_have_no_notifications;
extern const char *Txt_You_have_no_unread_notifications;
char *Query;
char SubQuery[128];
MYSQL_RES *mysql_res;
MYSQL_ROW row;