Version 14.104.3

This commit is contained in:
Antonio Cañas Vargas 2015-03-29 21:58:55 +02:00
parent 2d191124e4
commit 720521c306
2 changed files with 10 additions and 4 deletions

View File

@ -103,12 +103,13 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.104.1 (2015/03/29)"
#define Log_PLATFORM_VERSION "SWAD 14.104.3 (2015/03/29)"
// 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
/*
TODO: Show my course record card when I am a student and I click on record icon on the left of my record card?
Version 14.104.3: Mar 29, 2015 Changes in layout of course record cards. (184048 lines)
Version 14.104.2: Mar 29, 2015 Changes in layout of record cards. (184042 lines)
Version 14.104.1: Mar 29, 2015 Changes in layout of record cards. (184039 lines)
Version 14.104: Mar 29, 2015 Changes in layout of record cards. (184021 lines)

View File

@ -1632,14 +1632,19 @@ void Rec_ShowCrsRecord (Rec_RecordViewType_t TypeOfView,struct UsrData *UsrDat)
DB_FreeMySQLResult (&mysql_res);
}
/***** End frame *****/
Lay_EndRoundFrameTable10 ();
/***** Button to save changes *****/
if (DataForm)
{
fprintf (Gbl.F.Out,"<tr>"
"<td colspan=\"2\" style=\"text-align:center;\">");
Lay_PutConfirmButton (Txt_Save);
Act_FormEnd ();
fprintf (Gbl.F.Out,"</td>"
"</tr>");
}
/***** End frame *****/
Lay_EndRoundFrameTable10 ();
}
/*****************************************************************************/