Version 16.107.10

This commit is contained in:
Antonio Cañas Vargas 2016-12-27 14:04:47 +01:00
parent b9ccb352bb
commit d430487986
3 changed files with 7 additions and 8 deletions

View File

@ -189,13 +189,14 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.107.9 (2016-12-27)" #define Log_PLATFORM_VERSION "SWAD 16.107.10 (2016-12-27)"
#define CSS_FILE "swad16.106.5.css" #define CSS_FILE "swad16.106.5.css"
#define JS_FILE "swad16.101.js" #define JS_FILE "swad16.101.js"
// Number of lines (includes comments but not blank lines) has been got with the following command: // 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 // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*?.h sql/swad*.sql | tail -1
/* /*
Version 16.107.10:Dec 27, 2016 Changes in behaviour of labels in forms. (211606 lines)
Version 16.107.9: Dec 27, 2016 Changes in edition of new notice. (211607 lines) Version 16.107.9: Dec 27, 2016 Changes in edition of new notice. (211607 lines)
Version 16.107.8: Dec 27, 2016 Changes in behaviour of labels in forms. (211598 lines) Version 16.107.8: Dec 27, 2016 Changes in behaviour of labels in forms. (211598 lines)
Version 16.107.7: Dec 27, 2016 Code refactoring in forums. (211594 lines) Version 16.107.7: Dec 27, 2016 Code refactoring in forums. (211594 lines)

View File

@ -3285,16 +3285,16 @@ static void Rec_ShowComments (struct UsrData *UsrDat,
extern const char *Txt_USER_comments; extern const char *Txt_USER_comments;
fprintf (Gbl.F.Out,"<tr>" fprintf (Gbl.F.Out,"<tr>"
"<td class=\"REC_C1_BOT RIGHT_TOP %s\">" "<td class=\"REC_C1_BOT RIGHT_TOP\">"
"%s:" "<label for=\"Comments\" class=\"%s\">%s:</label>"
"</td>" "</td>"
"<td class=\"REC_C2_BOT REC_DAT_BOLD LEFT_TOP\">", "<td class=\"REC_C2_BOT REC_DAT_BOLD LEFT_TOP\">",
ClassForm,Txt_USER_comments); ClassForm,Txt_USER_comments);
if (ShowData) if (ShowData)
{ {
if (DataForm) if (DataForm)
fprintf (Gbl.F.Out,"<textarea name=\"Comments\" rows=\"4\"" fprintf (Gbl.F.Out,"<textarea id=\"Comments\" name=\"Comments\""
" class=\"REC_C2_BOT_INPUT\">" " rows=\"4\" class=\"REC_C2_BOT_INPUT\">"
"%s" "%s"
"</textarea>", "</textarea>",
UsrDat->Comments); UsrDat->Comments);

View File

@ -4570,9 +4570,7 @@ static void Tst_PutFormEditOneQst (char *Stem,char *Feedback)
/***** Stem and image *****/ /***** Stem and image *****/
fprintf (Gbl.F.Out,"<tr>" fprintf (Gbl.F.Out,"<tr>"
"<td class=\"RIGHT_TOP\">" "<td class=\"RIGHT_TOP\">"
"<label for=\"Stem\" class=\"%s\">" "<label for=\"Stem\" class=\"%s\">%s:</label>"
"%s:"
"</label>"
"</td>" "</td>"
"<td class=\"LEFT_TOP\">" "<td class=\"LEFT_TOP\">"
"<textarea id=\"Stem\" name=\"Stem\"" "<textarea id=\"Stem\" name=\"Stem\""