diff --git a/swad_changelog.h b/swad_changelog.h index 901504a27..5003ac28e 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -103,11 +103,12 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 14.100.2 (2015/03/24)" +#define Log_PLATFORM_VERSION "SWAD 14.100.3 (2015/03/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 /* + Version 14.100.3: Mar 24, 2015 Fixed bug in link to institution in record. (183753 lines) Version 14.100.2: Mar 24, 2015 Changes in profile. Link to institution in record. (183752 lines) Version 14.100.1: Mar 24, 2015 Only font-awesome icons for notifications. (183724 lines) diff --git a/swad_record.c b/swad_record.c index d5d82a779..5051e24f1 100644 --- a/swad_record.c +++ b/swad_record.c @@ -2208,8 +2208,8 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, if (PutFormLinks) { Act_FormGoToStart (ActSeeInsInf); - Ins_PutParamInsCod (Gbl.CurrentIns.Ins.InsCod); - Act_LinkFormSubmit (Gbl.CurrentIns.Ins.FullName,NULL); + Ins_PutParamInsCod (Ins.InsCod); + Act_LinkFormSubmit (Ins.FullName,NULL); } Log_DrawLogo (Sco_SCOPE_INS,Ins.InsCod,Ins.ShortName, Rec_INSTITUTION_LOGO_SIZE,NULL,true); @@ -2230,8 +2230,8 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, if (PutFormLinks) { Act_FormGoToStart (ActSeeInsInf); - Ins_PutParamInsCod (Gbl.CurrentIns.Ins.InsCod); - Act_LinkFormSubmit (Gbl.CurrentIns.Ins.FullName,ClassHead); + Ins_PutParamInsCod (Ins.InsCod); + Act_LinkFormSubmit (Ins.FullName,ClassHead); } fprintf (Gbl.F.Out,"%s",Ins.FullName); if (PutFormLinks)