diff --git a/swad_changelog.h b/swad_changelog.h index c5533022d..3b2ed93c9 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -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) diff --git a/swad_country.c b/swad_country.c index c163b31c6..7879d94d9 100644 --- a/swad_country.c +++ b/swad_country.c @@ -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,"
"); - - /* 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,"
"); - fprintf (Gbl.F.Out,"
"); + /* 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,"
"); + } /***** Start frame *****/ Lay_StartRoundFrameTable (NULL,2,NULL);