Version 16.91.3

This commit is contained in:
Antonio Cañas Vargas 2016-12-07 12:33:22 +01:00
parent 345eaf8ea0
commit 1b0b7ebb73
2 changed files with 10 additions and 9 deletions

View File

@ -814,16 +814,16 @@ static void Agd_GetListEvents (Agd_AgendaType_t AgendaType)
switch (Gbl.Agenda.SelectedOrderType)
{
case Agd_ORDER_BY_START_DATE:
sprintf (OrderBySubQuery,"StartTime DESC,"
"EndTime DESC,"
"Event DESC,"
"Location DESC");
sprintf (OrderBySubQuery,"StartTime,"
"EndTime,"
"Event,"
"Location");
break;
case Agd_ORDER_BY_END_DATE:
sprintf (OrderBySubQuery,"EndTime DESC,"
"StartTime DESC,"
"Event DESC,"
"Location DESC");
sprintf (OrderBySubQuery,"EndTime,"
"StartTime,"
"Event,"
"Location");
break;
}
switch (AgendaType)

View File

@ -185,13 +185,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.91.2 (2016-12-07)"
#define Log_PLATFORM_VERSION "SWAD 16.91.3 (2016-12-07)"
#define CSS_FILE "swad16.86.5.css"
#define JS_FILE "swad16.90.2.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 16.91.3: Dec 07, 2016 Dates in agendas are ordered from old to new. (210188 lines)
Version 16.91.2: Dec 07, 2016 Changes in permissions to view public agendas.
Changes in help on public agendas. (210187 lines)
Version 16.91.1: Dec 07, 2016 Fixed bug in notifications. (210192 lines)