Version 15.54.6

This commit is contained in:
Antonio Cañas Vargas 2015-12-01 19:38:01 +01:00
parent 44d447c5bd
commit 533e27aebd
2 changed files with 9 additions and 3 deletions

View File

@ -110,18 +110,20 @@
// TODO: Edition of courses: Rename "Optativas/libre conf." to "Optativas varios cursos"
// TODO: Edition of courses: Rename "Curso" to "Año / semestre / cuatrimestre"
// TODO: Listing of courses: Put "Optativas" year at the end
// TODO: Go to degree in table of degrees (statistic)
// TODO: Heading in Chrome!!!
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.54.5 (2015/12/01)"
#define Log_PLATFORM_VERSION "SWAD 15.54.6 (2015/12/01)"
#define CSS_FILE "swad15.54.4.css"
// 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 15.54.6: Dec 01, 2015 Change in layout of file browser. (186768 lines)
Version 15.54.5: Dec 01, 2015 Fixed bug in file browser, reported by Jacinto Domínguez Rull. (186763 lines)
Version 15.54.4: Dec 01, 2015 Fixed bug in title (country, institution, centre, degree, course). (186761 lines)
Version 15.54.3: Dec 01, 2015 Minor changes in tabs, menus and CSS. (186758 lines)

View File

@ -3540,7 +3540,8 @@ static void Brw_WriteSubtitleOfFileBrowser (void)
extern const char *Txt_nobody_else_can_access_this_content;
char Subtitle[1024];
fprintf (Gbl.F.Out,"<div style=\"margin:0 auto; min-width:750px;\">");
/***** Container start *****/
fprintf (Gbl.F.Out,"<div style=\"margin:0 auto;\">");
/***** Form to change zone (course and group browsers) *****/
switch (Gbl.FileBrowser.Type)
@ -3658,7 +3659,10 @@ static void Brw_WriteSubtitleOfFileBrowser (void)
return;
}
if (Subtitle[0])
fprintf (Gbl.F.Out,"<span class=\"BROWSER_SUBTITLE\">%s</span>",Subtitle);
fprintf (Gbl.F.Out,"<span class=\"BROWSER_SUBTITLE\">%s</span>",
Subtitle);
/***** Container end *****/
fprintf (Gbl.F.Out,"</div>");
}