Version 15.40.2

This commit is contained in:
Antonio Cañas Vargas 2015-11-19 16:33:50 +01:00
parent 63e168b3e6
commit ef540c1f14
5 changed files with 3 additions and 14 deletions

View File

@ -261,9 +261,6 @@ static void Ctr_Configuration (bool PrintView)
{ {
fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">"); fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">");
/* Link to show degrees */
Act_PutContextualLink (ActSeeDeg,NULL,"deg",Txt_Degrees);
/* Link to print view */ /* Link to print view */
Act_PutContextualLink (ActPrnCtrInf,NULL,"print",Txt_Print); Act_PutContextualLink (ActPrnCtrInf,NULL,"print",Txt_Print);

View File

@ -111,11 +111,12 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.40.1 (2015/11/19)" #define Log_PLATFORM_VERSION "SWAD 15.40.2 (2015/11/19)"
// 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 15.40.2: Nov 19, 2015 Some links to countries, institutions, centres and degrees removed. (187281 lines)
Version 15.40.1: Nov 19, 2015 Changes in behaviour of links to countries, institutions, centres and degrees. (187288 lines) Version 15.40.1: Nov 19, 2015 Changes in behaviour of links to countries, institutions, centres and degrees. (187288 lines)
Version 15.40: Nov 17, 2015 Changes in statistics of number of users. Version 15.40: Nov 17, 2015 Changes in statistics of number of users.
Changes in listing of countries. (187275 lines) Changes in listing of countries. (187275 lines)

View File

@ -220,9 +220,6 @@ static void Cty_Configuration (bool PrintView)
/***** Links to show institutions and to print view *****/ /***** Links to show institutions and to print view *****/
fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">"); fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">");
/* Link to show institutions */
Act_PutContextualLink (ActSeeIns,NULL,"ins",Txt_Institutions);
/* Link to print view */ /* Link to print view */
Act_PutContextualLink (ActPrnCtyInf,NULL,"print",Txt_Print); Act_PutContextualLink (ActPrnCtyInf,NULL,"print",Txt_Print);

View File

@ -297,9 +297,6 @@ static void Deg_Configuration (bool PrintView)
{ {
fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">"); fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">");
/* Link to show courses */
Act_PutContextualLink (ActSeeCrs,NULL,"crs",Txt_Courses);
/* Link to print view */ /* Link to print view */
Act_PutContextualLink (ActPrnDegInf,NULL,"print",Txt_Print); Act_PutContextualLink (ActPrnDegInf,NULL,"print",Txt_Print);

View File

@ -158,7 +158,7 @@ void Ins_SeeInsWithPendingCtrs (void)
/* Get data of institution */ /* Get data of institution */
Ins_GetDataOfInstitutionByCod (&Ins,Ins_GET_MINIMAL_DATA); Ins_GetDataOfInstitutionByCod (&Ins,Ins_GET_MINIMAL_DATA);
/* Institution logo and full name */ /* Institution logo and name */
fprintf (Gbl.F.Out,"<tr>" fprintf (Gbl.F.Out,"<tr>"
"<td class=\"LEFT_MIDDLE %s\">", "<td class=\"LEFT_MIDDLE %s\">",
BgColor); BgColor);
@ -241,9 +241,6 @@ static void Ins_Configuration (bool PrintView)
{ {
fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">"); fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">");
/* Link to show centres */
Act_PutContextualLink (ActSeeCtr,NULL,"ctr",Txt_Centres);
/* Link to print view */ /* Link to print view */
Act_PutContextualLink (ActPrnInsInf,NULL,"print",Txt_Print); Act_PutContextualLink (ActPrnInsInf,NULL,"print",Txt_Print);