From f15c6be659a60602f70905cdcfade8dec75fef83 Mon Sep 17 00:00:00 2001 From: acanas Date: Wed, 25 Nov 2020 22:50:35 +0100 Subject: [PATCH] Version20.7.2 --- swad_changelog.h | 1 + swad_match.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/swad_changelog.h b/swad_changelog.h index 97ab425bd..6afa6814b 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -602,6 +602,7 @@ Juan Miguel. TODO: Fix bug: un profesor editor no puede ver las carpetas de TFG (proyectos) de otros. Debería poder. TODO: DNI de un estudiante sale erróneamente como ******* en lugar de mostrarse al ver los accesos de un estudiante a la asignatura. + Version 20.7.2: Nov 25, 2020 Changes in edition of matches. (304690 lines) Version 20.7.1: Nov 25, 2020 New file extension .ipynb, suggested by Pedro A. García Sánchez. (304688 lines) Copy the following icon to icon public directory: sudo cp icon/filext32x32/ipynb32x32.gif /var/www/html/swad/icon/filext32x32/ diff --git a/swad_match.c b/swad_match.c index 3991f877a..1cbe3418c 100644 --- a/swad_match.c +++ b/swad_match.c @@ -541,7 +541,8 @@ static void Mch_ListOneOrMoreMatches (struct Gam_Games *Games, HTM_TR_End (); /***** Second row for this match used for edition ****/ - if (Match.MchCod == Games->MchCod.Selected) + if (Gbl.Action.Act == ActEdiMch && // Editing... + Match.MchCod == Games->MchCod.Selected) // ...this match /***** Check if I can edit this match *****/ if (Mch_CheckIfICanEditThisMatch (&Match)) {