Version 16.143.1

This commit is contained in:
Antonio Cañas Vargas 2017-02-28 01:24:25 +01:00
parent dfa4f837ad
commit 3138bcd9be
4 changed files with 5 additions and 5 deletions

View File

@ -200,13 +200,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.143 (2017-02-28)"
#define Log_PLATFORM_VERSION "SWAD 16.143.1 (2017-02-28)"
#define CSS_FILE "swad16.139.6.css"
#define JS_FILE "swad16.141.1.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.143.1: Feb 28, 2017 Changed link to help on timeline. (213232 lines)
Version 16.143: Feb 28, 2017 Search countries. (213231 lines)
Version 16.142.1: Feb 27, 2017 Public activity is renamed as timeline. (213085 lines)
Version 16.142: Feb 27, 2017 Searches are registered anonymously. (213077 lines)

View File

@ -2347,4 +2347,3 @@ unsigned Cty_ListCtysFound (const char *Query)
return NumCtys;
}

View File

@ -179,7 +179,7 @@ const char *Hlp_USERS_Connected_last_clicks = WIKI "USERS.Connected#last-clicks"
/***** SOCIAL tab *****/
const char *Hlp_SOCIAL_Activity = WIKI "SOCIAL.Activity";
const char *Hlp_SOCIAL_Timeline = WIKI "SOCIAL.Timeline";
const char *Hlp_SOCIAL_Profiles_view_public_profile = WIKI "SOCIAL.Profiles#view-public-profile";
const char *Hlp_SOCIAL_Profiles_who_to_follow = WIKI "SOCIAL.Profiles#who-to-follow";

View File

@ -905,7 +905,7 @@ static void Soc_DropTemporaryTablesUsedToQueryTimeline (void)
static void Soc_ShowTimeline (const char *Query,const char *Title,
long NotCodToHighlight)
{
extern const char *Hlp_SOCIAL_Activity;
extern const char *Hlp_SOCIAL_Timeline;
MYSQL_RES *mysql_res;
MYSQL_ROW row;
unsigned long NumPubsGot;
@ -919,7 +919,7 @@ static void Soc_ShowTimeline (const char *Query,const char *Title,
/***** Start frame *****/
Lay_StartRoundFrame (Soc_WIDTH_TIMELINE,Title,
Soc_PutIconsTimeline,Hlp_SOCIAL_Activity);
Soc_PutIconsTimeline,Hlp_SOCIAL_Timeline);
/***** Put form to select users whom public activity is displayed *****/
if (GlobalTimeline)