Version20.7.2

This commit is contained in:
acanas 2020-11-25 22:50:35 +01:00
parent adfcea4222
commit f15c6be659
2 changed files with 3 additions and 1 deletions

View File

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

View File

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