Version19.122.1

This commit is contained in:
Antonio Cañas Vargas 2020-02-07 00:32:48 +01:00
parent f73490a8ef
commit 190dcab2b9
4 changed files with 6 additions and 4 deletions

View File

@ -499,5 +499,5 @@ void Ale_ShowAlertYouCanNotLeaveFieldEmpty (void)
{
extern const char *Txt_You_can_not_leave_the_field_empty;
Ale_ShowAlert (Ale_WARNING,NULL,Txt_You_can_not_leave_the_field_empty);
Ale_ShowAlert (Ale_WARNING,Txt_You_can_not_leave_the_field_empty);
}

View File

@ -494,14 +494,16 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 19.122 (2020-01-30)"
#define Log_PLATFORM_VERSION "SWAD 19.122.1 (2020-02-07)"
#define CSS_FILE "swad19.118.css"
#define JS_FILE "swad19.91.1.js"
/*
// TODO: Hacer un nuevo rol en los TFG: tutor externo (profesor de áreas no vinculadas con el centro, profesionales de empresas, etc.)
// TODO: Impedir la creación y edición de proyectos si no son editables.
// TODO: No se puede entrar con DNI '1' suponiendo que no tenga password ¿por qué?
// TODO: En la lista de conectados central, poner el logo de la institución a la que pertenece el usuario
Version 19.122.1: Feb 07, 2020 Fixed bug removing test tags, reported by Mancia Anguita López. (278692 lines)
Version 19.122: Jan 30, 2020 Some options changed in system tab. (278690 lines)
Copy the following icons to icon public directory:
sudo cp -a icon/bolt.svg /var/www/html/swad/icon/

View File

@ -1812,7 +1812,7 @@ static void Tst_ShowFormEditTags (void)
Frm_StartForm (ActRenTag);
Par_PutHiddenParamString (NULL,"OldTagTxt",row[1]);
HTM_INPUT_TEXT ("NewTagTxt",Tst_MAX_CHARS_TAG,row[1],true,
"size=\"36\"");
"size=\"36\" required=\"required\"");
Frm_EndForm ();
HTM_TD_End ();

View File

@ -47,7 +47,7 @@ typedef enum
The_THEME_PINK = 5,
The_THEME_UNKNOWN = 6,
} The_Theme_t;
#define The_THEME_DEFAULT The_THEME_PINK
#define The_THEME_DEFAULT The_THEME_PURPLE
/*****************************************************************************/
/***************************** Public prototypes *****************************/