diff --git a/swad_changelog.h b/swad_changelog.h index 8ef804c9d..c9c0e3ee6 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -133,13 +133,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 15.162.3 (2016-03-24)" +#define Log_PLATFORM_VERSION "SWAD 15.162.4 (2016-03-24)" #define CSS_FILE "swad15.162.1.css" #define JS_FILE "swad15.131.3.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 15.162.4: Mar 24, 2016 Changes in button shown after editing institutions. (196612 lines) Version 15.162.3: Mar 24, 2016 Changes in button shown after editing centres. (196609 lines) Version 15.162.2: Mar 24, 2016 Changes in button shown after editing degrees. (196606 lines) Version 15.162.1: Mar 24, 2016 Changes in buttons shown after editing courses. (196603 lines) diff --git a/swad_institution.c b/swad_institution.c index 97ed1e7fd..f4bcf8505 100644 --- a/swad_institution.c +++ b/swad_institution.c @@ -1818,11 +1818,13 @@ static void Ins_PutButtonToGoToIns (struct Institution *Ins) // If the institution is different to the current one... if (Ins->InsCod != Gbl.CurrentIns.Ins.InsCod) { + fprintf (Gbl.F.Out,"
"); Act_FormStart (ActSeeCtr); Ins_PutParamInsCod (Ins->InsCod); sprintf (Gbl.Title,Txt_Go_to_X,Ins->ShortName); - Lay_PutConfirmButton (Gbl.Title); + Lay_PutConfirmButtonInline (Gbl.Title); Act_FormEnd (); + fprintf (Gbl.F.Out,"
"); } }