Version 15.162.4

This commit is contained in:
Antonio Cañas Vargas 2016-03-24 21:03:48 +01:00
parent 65572f304c
commit 976c136d86
2 changed files with 5 additions and 2 deletions

View File

@ -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)

View File

@ -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,"<div class=\"BUTTONS_AFTER_ALERT\">");
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,"</div>");
}
}