Version 14.100.3

This commit is contained in:
Antonio Cañas Vargas 2015-03-24 10:27:59 +01:00
parent db259af342
commit d424e75047
2 changed files with 6 additions and 5 deletions

View File

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

View File

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