Version 15.79.1

This commit is contained in:
Antonio Cañas Vargas 2015-12-29 14:31:48 +01:00
parent c0db65c83d
commit b5753b5268
2 changed files with 5 additions and 4 deletions

View File

@ -115,13 +115,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.79 (2015-12-29)"
#define Log_PLATFORM_VERSION "SWAD 15.79.1 (2015-12-29)"
#define CSS_FILE "swad15.79.css"
#define JS_FILE "swad15.77.7.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.79.1: Dec 29, 2015 Changes in layout of user's profile. (188836 lines)
Version 15.79: Dec 29, 2015 Show timeline of a selected user.
Changes in CSS related to social activity. (188834 lines)
Version 15.78.1: Dec 29, 2015 Go directly to notice in notifications and social events. (188785 lines)

View File

@ -206,6 +206,9 @@ static void Prf_GetUsrDatAndShowUserProfile (void)
/***** Request nickname again *****/
Prf_RequestUserProfileWithDefaultNickname ("");
}
else
/***** Show social activity (timeline) of this user *****/
Soc_ShowUsrTimeline (Gbl.Usrs.Other.UsrDat.UsrCod);
}
/*****************************************************************************/
@ -245,9 +248,6 @@ bool Prf_ShowUserProfile (void)
Fol_ShowFollowingAndFollowers (&Gbl.Usrs.Other.UsrDat,
NumFollowing,NumFollowers);
/***** Show social activity (timeline) of a selected user *****/
Soc_ShowUsrTimeline (Gbl.Usrs.Other.UsrDat.UsrCod);
return true;
}
return false;