Version 14.110.5

This commit is contained in:
Antonio Cañas Vargas 2015-04-11 02:19:32 +02:00
parent 719cf80772
commit cf4e3ad7f1
4 changed files with 12 additions and 11 deletions

View File

@ -772,7 +772,8 @@ a:hover img.CENTRE_PHOTO_SHOW
/************************ Help for the text editor ***************************/
.HELP_EDIT
{
margin-bottom:10px;
margin:8px;
text-align:center;
color:#808080;
font-size:8pt;
}

View File

@ -583,9 +583,10 @@ a:hover img.CENTRE_PHOTO_SHOW
/************************ Help for the text editor ***************************/
.HELP_EDIT
{
margin-bottom:10px;
margin:10px;
text-align:center;
color:#808080;
font-size:8pt;
font-size:10pt;
}
/*****************************************************************************/

View File

@ -103,11 +103,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.110.4 (2015/04/11)"
#define Log_PLATFORM_VERSION "SWAD 14.110.5 (2015/04/11)"
// 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 14.110.5: Apr 11, 2015 Fixed bug in tests. (184685 lines)
Version 14.110.4: Apr 11, 2015 Changes in MathJax configuration. (184685 lines)
Version 14.110.3: Apr 09, 2015 Changes in conversion from Markdown to HTML5 using pandoc. (184599 lines)
Version 14.110.2: Apr 09, 2015 Changes in CSS and scripts.

View File

@ -4218,6 +4218,9 @@ static void Tst_PutFormEditOneQst (char *Stem,char *Feedback)
Lay_WriteTitle (Txt_New_question);
}
/***** Help for text editor *****/
Lay_HelpPlainEditor ();
/***** Start form *****/
Act_FormStart (ActRcvTstQst);
if (Gbl.Test.QstCod != -1) // If the question already has assigned a code
@ -4313,14 +4316,9 @@ static void Tst_PutFormEditOneQst (char *Stem,char *Feedback)
"%s:"
"</td>"
"<td style=\"text-align:left; vertical-align:top;\">"
"<textarea name=\"Feedback\" cols=\"70\" rows=\"8\">"
"%s"
"</textarea>"
"</td>"
"</tr>",
"<textarea name=\"Feedback\" cols=\"70\" rows=\"8\">",
The_ClassFormul[Gbl.Prefs.Theme],
Txt_Feedback,
Feedback);
Txt_Feedback);
if (Feedback)
if (Feedback[0])
fprintf (Gbl.F.Out,"%s",Feedback);