Version 15.192.5

This commit is contained in:
Antonio Cañas Vargas 2016-04-11 09:44:27 +02:00
parent fe4d47a1f2
commit 733875e061
2 changed files with 3 additions and 5 deletions

View File

@ -130,19 +130,18 @@
// TODO: In social refreshing via AJAX, an error occurs when session expirates
// TODO: Messages in msg_content_deleted older than a certain time should be deleted to ensure the protection of personal data
// TODO: Show image original when writing the reply to a message?
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.192.4 (2016-04-11)"
#define Log_PLATFORM_VERSION "SWAD 15.192.5 (2016-04-11)"
#define CSS_FILE "swad15.192.css"
#define JS_FILE "swad15.190.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 15.192.5: Apr 11, 2016 Fixed bug in edition of tests. (199369 lines)
Version 15.192.4: Apr 11, 2016 Fixed bug when removing messages. (199370 lines)
Version 15.192.3: Apr 11, 2016 Fixed bugs when receiving forum image. (199355 lines)
Version 15.192.2: Apr 11, 2016 Fixed bug when getting forum post content. (199344 lines)

View File

@ -285,8 +285,7 @@ void Tst_ShowFormAskTst (void)
extern const char *Txt_No_test_questions;
MYSQL_RES *mysql_res;
unsigned long NumRows;
bool ICanEdit = (Gbl.Usrs.Me.LoggedRole == Rol_STUDENT ||
Gbl.Usrs.Me.LoggedRole == Rol_TEACHER ||
bool ICanEdit = (Gbl.Usrs.Me.LoggedRole == Rol_TEACHER ||
Gbl.Usrs.Me.LoggedRole == Rol_SYS_ADM);
/***** Read test configuration from database *****/