Version 16.232.3

This commit is contained in:
Antonio Cañas Vargas 2017-06-01 17:53:09 +02:00
parent e3ad05d77b
commit 84ac2065ac
2 changed files with 16 additions and 13 deletions

View File

@ -229,17 +229,20 @@
// TODO: Limit lenght of very big institution name in record card // TODO: Limit lenght of very big institution name in record card
// TODO: FIX BUG: Button remove in forums was missing.
/*****************************************************************************/ /*****************************************************************************/
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.232.2 (2017-05-31)" #define Log_PLATFORM_VERSION "SWAD 16.232.3 (2017-06-01)"
#define CSS_FILE "swad16.226.css" #define CSS_FILE "swad16.226.css"
#define JS_FILE "swad16.206.3.js" #define JS_FILE "swad16.206.3.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 16.232.3: Jun 01, 2017 Fixed bug in permission of deletion of forum threads. (? lines)
Version 16.232.2: May 31, 2017 Fixed bug in selection of user's centre and department. (221089 lines) Version 16.232.2: May 31, 2017 Fixed bug in selection of user's centre and department. (221089 lines)
Version 16.232.1: May 31, 2017 Improvements in selection of user's institution, centre and department. (221085 lines) Version 16.232.1: May 31, 2017 Improvements in selection of user's institution, centre and department. (221085 lines)
Version 16.232: May 31, 2017 Fix bug in selection of user's centre. (221042 lines) Version 16.232: May 31, 2017 Fix bug in selection of user's centre. (221042 lines)

View File

@ -58,18 +58,18 @@ extern struct Globals Gbl;
const unsigned PermissionThreadDeletion[For_NUM_TYPES_FORUM] = const unsigned PermissionThreadDeletion[For_NUM_TYPES_FORUM] =
{ {
0x1F0, // For_FORUM_COURSE_USRS 0x3F0, // For_FORUM_COURSE_USRS
0x1F0, // For_FORUM_COURSE_TCHS 0x3F0, // For_FORUM_COURSE_TCHS
0x1E0, // For_FORUM_DEGREE_USRS 0x3E0, // For_FORUM_DEGREE_USRS
0x1E0, // For_FORUM_DEGREE_TCHS 0x3E0, // For_FORUM_DEGREE_TCHS
0x1C0, // For_FORUM_CENTRE_USRS 0x3C0, // For_FORUM_CENTRE_USRS
0x1C0, // For_FORUM_CENTRE_TCHS 0x3C0, // For_FORUM_CENTRE_TCHS
0x180, // For_FORUM_INSTIT_USRS 0x380, // For_FORUM_INSTIT_USRS
0x180, // For_FORUM_INSTIT_TCHS 0x380, // For_FORUM_INSTIT_TCHS
0x100, // For_FORUM_GLOBAL_USRS 0x300, // For_FORUM_GLOBAL_USRS
0x100, // For_FORUM_GLOBAL_TCHS 0x300, // For_FORUM_GLOBAL_TCHS
0x100, // For_FORUM__SWAD__USRS 0x300, // For_FORUM__SWAD__USRS
0x100, // For_FORUM__SWAD__TCHS 0x300, // For_FORUM__SWAD__TCHS
0x000, // For_FORUM_UNKNOWN 0x000, // For_FORUM_UNKNOWN
}; };