Version 16.73.1

This commit is contained in:
Antonio Cañas Vargas 2016-11-27 19:21:56 +01:00
parent 5e6ff349cc
commit d3da344805
3 changed files with 6 additions and 2 deletions

View File

@ -176,13 +176,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.73 (2016-11-27)"
#define Log_PLATFORM_VERSION "SWAD 16.73.1 (2016-11-27)"
#define CSS_FILE "swad16.69.css"
#define JS_FILE "swad16.46.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 16.73.1: Nov 27, 2016 Contextual help on search. (? lines)
Version 16.73: Nov 27, 2016 Changes in teacher's record card. (207711 lines)
Version 16.72.2: Nov 27, 2016 Fixed bug in answers of survey. (207704 lines)
Version 16.72.1: Nov 27, 2016 Fixed bug in answers of test questions, reported by Javier Fernández Baldomero. (207704 lines)

View File

@ -39,6 +39,8 @@
#define WIKI "https://github.com/acanas/swad-core/wiki/"
const char *Hlp_Search = WIKI "Search";
/***** SYSTEM tab *****/
const char *Hlp_SYSTEM_Countries = WIKI "SYSTEM.Countries";

View File

@ -197,6 +197,7 @@ void Sch_ReqCrsSearch (void)
static void Sch_PutFormToSearchWithWhatToSearchAndScope (Act_Action_t Action,Sco_Scope_t DefaultScope)
{
extern const char *Hlp_Search;
extern const char *The_ClassForm[The_NUM_THEMES];
extern const char *Txt_Scope;
extern const char *Txt_SEARCH_X_in_Y;
@ -231,7 +232,7 @@ static void Sch_PutFormToSearchWithWhatToSearchAndScope (Act_Action_t Action,Sco
/***** Start form *****/
fprintf (Gbl.F.Out,"<div class=\"CENTER_MIDDLE\">");
Act_FormStart (Action);
Lay_StartRoundFrame (NULL,Txt_Search,NULL,NULL);
Lay_StartRoundFrame (NULL,Txt_Search,NULL,Hlp_Search);
/***** Scope (whole platform, current country, current institution,
current centre, current degree or current course) *****/