Version 16.105.14

This commit is contained in:
Antonio Cañas Vargas 2016-12-25 18:35:19 +01:00
parent 3986d9405c
commit 9c7ea2e8fe
3 changed files with 4 additions and 2 deletions

View File

@ -188,13 +188,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.106.13 (2016-12-24)"
#define Log_PLATFORM_VERSION "SWAD 16.106.14 (2016-12-25)"
#define CSS_FILE "swad16.106.5.css"
#define JS_FILE "swad16.101.js"
// 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 16.106.14:Dec 25, 2016 Changes in behaviour of labels in forms. (211423 lines)
Version 16.106.13:Dec 24, 2016 Changes in behaviour of labels in forms. (211421 lines)
Version 16.106.12:Dec 24, 2016 Changes in behaviour of labels in forms. (211418 lines)
Version 16.106.11:Dec 24, 2016 Changes in behaviour of labels in forms. (211415 lines)

View File

@ -725,7 +725,6 @@ static void Plc_PutFormToCreatePlace (void)
" class=\"INPUT_FULL_NAME\""
" required=\"required\" />"
"</td>"
"<td></td>"
"</tr>",
Plc_MAX_LENGTH_PLACE_FULL_NAME,Plc->FullName);

View File

@ -177,6 +177,7 @@ static void Pri_PutFormVisibility (const char *TxtLabel,
if (MaskAllowedVisibility & 1 << Visibility)
{
fprintf (Gbl.F.Out,"<li class=\"%s\">"
"<label>"
"<input type=\"radio\" name=\"%s\" value=\"%u\"",
(Visibility == CurrentVisibilityInDB) ? "DAT_N LIGHT_BLUE" :
"DAT",
@ -190,6 +191,7 @@ static void Pri_PutFormVisibility (const char *TxtLabel,
Gbl.Form.Id);
fprintf (Gbl.F.Out," />"
"%s"
"</label>"
"</li>",
Txt_PRIVACY_OPTIONS[Visibility]);
}