Version 15.113.2

This commit is contained in:
Antonio Cañas Vargas 2016-01-14 10:40:33 +01:00
parent e36eb26d0b
commit 81e01127d8
2 changed files with 2 additions and 9 deletions

View File

@ -127,13 +127,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.113.1 (2016-01-14)"
#define Log_PLATFORM_VERSION "SWAD 15.113.2 (2016-01-14)"
#define CSS_FILE "swad15.111.css"
#define JS_FILE "swad15.111.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 15.113.2: Jan 14, 2016 Removed unused code. (192668 lines)
Version 15.113.1: Jan 14, 2016 Remove unused function. (192675 lines)
Version 15.113: Jan 14, 2016 Code refactoring related to forms with unique identifiers.
Use unique identifiers in forms of lists of connected users. (192680 lines)

View File

@ -687,10 +687,7 @@ static void Soc_ShowTimeline (const char *Query,const char *Title)
if (!AlreadyWasInTimeline) // This check is not necessary
// because we have got publishing
// not yet in timeline
{
// fprintf (Gbl.F.Out,"<li>PubCod %ld:</li>",SocPub.PubCod);
Soc_WriteSocialNote (&SocNot,&SocPub,false,true);
}
}
fprintf (Gbl.F.Out,"</ul>");
@ -748,7 +745,6 @@ static void Soc_ShowNewPubsInTimeline (const char *Query)
/* Write social note */
// New publishings are written even if the note was already un timeline
// fprintf (Gbl.F.Out,"<li>PubCod %ld:</li>",SocPub.PubCod);
Soc_WriteSocialNote (&SocNot,&SocPub,false,true);
}
@ -796,10 +792,7 @@ static void Soc_ShowOldPubsInTimeline (const char *Query)
if (!AlreadyWasInTimeline) // This check is not necessary
// because we have got publishing
// not yet in timeline
{
// fprintf (Gbl.F.Out,"<li>PubCod %ld:</li>",SocPub.PubCod);
Soc_WriteSocialNote (&SocNot,&SocPub,false,true);
}
}
/***** Store first publishing code into session *****/
@ -1863,7 +1856,6 @@ static void Soc_WriteCommentsInSocialNote (long NotCod,
Soc_GetDataOfSocialCommentFromRow (row,&SocCom);
/* Write social comment */
// fprintf (Gbl.F.Out,"<li>PubCod %ld:</li>",SocCom.ComCod);
Soc_WriteSocialComment (&SocCom,false);
}