diff --git a/icon/iconset/awesome/action64x64/institution64x64.gif b/icon/iconset/awesome/action64x64/institution64x64.gif index 84458e540..34f5d9695 100644 Binary files a/icon/iconset/awesome/action64x64/institution64x64.gif and b/icon/iconset/awesome/action64x64/institution64x64.gif differ diff --git a/icon/ins64x64.gif b/icon/ins64x64.gif index 84458e540..34f5d9695 100644 Binary files a/icon/ins64x64.gif and b/icon/ins64x64.gif differ diff --git a/swad_changelog.h b/swad_changelog.h index 88d71b728..d674ebce2 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -39,11 +39,12 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 14.70.3 (2015/01/28)" +#define Log_PLATFORM_VERSION "SWAD 14.70.4 (2015/01/28)" // 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 | tail -1 /* + Version 14.70.4: Jan 28, 2015 Links in breadcrumbs now go to information options. (176218 lines) Version 14.70.3: Jan 28, 2015 Some button messages changed. Buttons to view when editing. (176217 lines) Version 14.70.2: Jan 27, 2015 Changed permissions in documents zones of institution, centre and degree. (176188 lines) diff --git a/swad_degree.c b/swad_degree.c index 15ec414c9..45800d5e4 100644 --- a/swad_degree.c +++ b/swad_degree.c @@ -632,7 +632,7 @@ void Deg_WriteCtyInsCtrDeg (void) The_ClassDegree[Gbl.Prefs.Theme]); /***** Form to go to the country *****/ - Act_FormGoToStart (ActSeeIns); + Act_FormGoToStart (ActSeeCtyInf); Cty_PutParamCtyCod (Gbl.CurrentCty.Cty.CtyCod); Act_LinkFormSubmit (Gbl.CurrentCty.Cty.Name[Gbl.Prefs.Language], The_ClassDegree[Gbl.Prefs.Theme]); @@ -647,7 +647,7 @@ void Deg_WriteCtyInsCtrDeg (void) The_ClassDegree[Gbl.Prefs.Theme]); /***** Form to go to the institution *****/ - Act_FormGoToStart (ActSeeCtr); + Act_FormGoToStart (ActSeeInsInf); Ins_PutParamInsCod (Gbl.CurrentIns.Ins.InsCod); Act_LinkFormSubmit (Gbl.CurrentIns.Ins.FullName, The_ClassDegree[Gbl.Prefs.Theme]); @@ -662,7 +662,7 @@ void Deg_WriteCtyInsCtrDeg (void) The_ClassDegree[Gbl.Prefs.Theme]); /***** Form to go to the centre *****/ - Act_FormGoToStart (ActSeeDeg); + Act_FormGoToStart (ActSeeCtrInf); Ctr_PutParamCtrCod (Gbl.CurrentCtr.Ctr.CtrCod); Act_LinkFormSubmit (Gbl.CurrentCtr.Ctr.FullName, The_ClassDegree[Gbl.Prefs.Theme]); @@ -677,7 +677,7 @@ void Deg_WriteCtyInsCtrDeg (void) The_ClassDegree[Gbl.Prefs.Theme]); /***** Form to go to the degree *****/ - Act_FormGoToStart (ActSeeCrs); + Act_FormGoToStart (ActSeeDegInf); Deg_PutParamDegCod (Gbl.CurrentDeg.Deg.DegCod); Act_LinkFormSubmit (Gbl.CurrentDeg.Deg.FullName, The_ClassDegree[Gbl.Prefs.Theme]);