diff --git a/swad_changelog.h b/swad_changelog.h index ad3e7cc1f..f7581564d 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -156,13 +156,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 16.56.5 (2016-11-13)" +#define Log_PLATFORM_VERSION "SWAD 16.56.6 (2016-11-13)" #define CSS_FILE "swad16.51.css" #define JS_FILE "swad16.46.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.56.6: Nov 13, 2016 Contextual help on who to follow. (206968 lines) Version 16.56.5: Nov 13, 2016 Contextual help on view public profile. (206963 lines) Version 16.56.4: Nov 13, 2016 Contextual help on public activity. (206960 lines) Version 16.56.3: Nov 13, 2016 Contextual help on attendance. (206955 lines) diff --git a/swad_follow.c b/swad_follow.c index f54cf9e1c..fbd0d134e 100644 --- a/swad_follow.c +++ b/swad_follow.c @@ -101,6 +101,7 @@ void Fol_PutLinkWhoToFollow (void) void Fol_SuggestWhoToFollow (void) { + extern const char *Hlp_SOCIAL_Profiles_who_to_follow; extern const char *Pri_VisibilityDB[Pri_NUM_OPTIONS_PRIVACY]; extern const char *Txt_Who_to_follow; extern const char *Txt_No_user_to_whom_you_can_follow_Try_again_later; @@ -224,7 +225,9 @@ void Fol_SuggestWhoToFollow (void) if (NumUsrs) { /***** Start frame *****/ - Lay_StartRoundFrame ("560px",Txt_Who_to_follow,Fol_PutIconsWhoToFollow,NULL); + Lay_StartRoundFrame ("560px",Txt_Who_to_follow, + Fol_PutIconsWhoToFollow, + Hlp_SOCIAL_Profiles_who_to_follow); /***** Initialize structure with user's data *****/ Usr_UsrDataConstructor (&UsrDat); diff --git a/swad_help.c b/swad_help.c index 9b6d5adc4..01a46b67b 100644 --- a/swad_help.c +++ b/swad_help.c @@ -100,6 +100,7 @@ const char *Hlp_USERS_Attendance = WIKI "USERS.Attendance"; const char *Hlp_SOCIAL_Activity = WIKI "SOCIAL.Activity"; 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"; /***** STATS tab *****/