Version 15.73.1

This commit is contained in:
Antonio Cañas Vargas 2015-12-25 20:49:42 +01:00
parent 49deacb19d
commit 96b40a5a8f
2 changed files with 6 additions and 2 deletions

View File

@ -117,12 +117,13 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.73 (2015-12-24)"
#define Log_PLATFORM_VERSION "SWAD 15.73.1 (2015-12-24)"
#define CSS_FILE "swad15.72.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.73.1: Dec 25, 2015 Background of selected privacy options in light blue. (? lines)
Version 15.73: Dec 24, 2015 Fixed bug in privacy form.
Privacy is moved to preferences.
Default privacy is changed from "user" to "system". (187700 lines)

View File

@ -131,7 +131,10 @@ static void Pri_PutFormVisibility (const char *TxtLabel,
Visibility < Pri_NUM_OPTIONS_PRIVACY;
Visibility++)
{
fprintf (Gbl.F.Out,"<li class=\"DAT\">"
fprintf (Gbl.F.Out,"<li class=\"DAT");
if (Visibility == CurrentVisibilityInDB)
fprintf (Gbl.F.Out," LIGHT_BLUE");
fprintf (Gbl.F.Out,"\">"
"<input type=\"radio\" name=\"%s\" value=\"%u\"",
ParamName,(unsigned) Visibility);
if (Visibility == CurrentVisibilityInDB)