Version 15.0.3

This commit is contained in:
Antonio Cañas Vargas 2015-09-24 18:08:12 +02:00
parent a76fa88186
commit 99f7094a17
2 changed files with 13 additions and 12 deletions

View File

@ -98,13 +98,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.0.2 (2015/09/24)"
#define Log_PLATFORM_VERSION "SWAD 15.0.3 (2015/09/24)"
// 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
/*
BUG: Enlace a "Instituciones" sale erróneamente en País > Información > Imprimir.
Version 15.0.3: Sep 24, 2015 Fixed bug when printing country information. (185013 lines)
Version 15.0.2: Sep 24, 2015 New layout in preferences. (185011 lines)
Version 15.0.1: Sep 23, 2015 Fix bugs in size of background images. (185006 lines)
Version 15.0: Sep 23, 2015 All sizes are multiplied by 1.5 (50% bigger). (184885 lines)

View File

@ -229,17 +229,19 @@ static void Cty_Configuration (bool PrintView)
if (Gbl.CurrentCty.Cty.CtyCod > 0)
{
/***** Links to show institutions and to print view *****/
fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">");
/* Link to show institutions */
Act_PutContextualLink (ActSeeIns,NULL,"ins",Txt_Institutions);
/* Link to print view */
if (!PrintView)
Act_PutContextualLink (ActPrnCtyInf,NULL,"print",Txt_Print);
{
/***** Links to show institutions and to print view *****/
fprintf (Gbl.F.Out,"<div class=\"CONTEXT_MENU\">");
fprintf (Gbl.F.Out,"</div>");
/* Link to show institutions */
Act_PutContextualLink (ActSeeIns,NULL,"ins",Txt_Institutions);
/* Link to print view */
Act_PutContextualLink (ActPrnCtyInf,NULL,"print",Txt_Print);
fprintf (Gbl.F.Out,"</div>");
}
/***** Start frame *****/
Lay_StartRoundFrameTable (NULL,2,NULL);