diff --git a/css/swad15.64.3.css b/css/swad15.64.4.css similarity index 99% rename from css/swad15.64.3.css rename to css/swad15.64.4.css index a920aaa0f..f01e3a6ec 100644 --- a/css/swad15.64.3.css +++ b/css/swad15.64.4.css @@ -1549,6 +1549,11 @@ a:hover img.CENTRE_PHOTO_SHOW .REC_HEAD_SMALL {font-family:Georgia,"DejaVu LGC Serif","Bitstream Vera Serif",serif; color:#808080; font-size:11pt;} .REC_NAME {color:#808080; font-size:20pt; font-weight:bold;} .REC_NICK {color:#808080; font-size:15pt; font-weight:bold;} +.REC_WEBS + { + width:180px; + margin:0 auto; + } .REC_DAT {color:#404040; font-size:11pt; line-height:110%;} .REC_DAT_SMALL {color:#808080; font-size:11pt; line-height:110%;} .REC_DAT_SMALL_BOLD {color:black; font-size:11pt; line-height:110%;} diff --git a/swad_changelog.h b/swad_changelog.h index 232818b63..ef50afb32 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -117,12 +117,13 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 15.64.3 (2015/12/13)" -#define CSS_FILE "swad15.64.3.css" +#define Log_PLATFORM_VERSION "SWAD 15.64.4 (2015/12/13)" +#define CSS_FILE "swad15.64.4.css" // 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.64.4: Dec 13, 2015 Links to web / social networks are not displayed when printing record card. (186986 lines) Version 15.64.3: Dec 13, 2015 Changes in layout of records. (186979 lines) Version 15.64.2: Dec 13, 2015 Changes in some CSS names. (186975 lines) Version 15.64.1: Dec 12, 2015 Changes in layout of user's public profile. (186980 lines) diff --git a/swad_network.c b/swad_network.c index 588e40cfa..c2108e648 100644 --- a/swad_network.c +++ b/swad_network.c @@ -197,7 +197,7 @@ void Net_ShowWebsAndSocialNets (const struct UsrData *UsrDat) char URL[Cns_MAX_BYTES_URL+1]; /***** Start container *****/ - fprintf (Gbl.F.Out,"
"); + fprintf (Gbl.F.Out,"
"); /***** Show link to public profile *****/ Net_ShowAWebOrSocialNet (Prf_GetURLPublicProfile (URL,UsrDat->Nickname), diff --git a/swad_record.c b/swad_record.c index 29c31cd48..a20e837bb 100644 --- a/swad_record.c +++ b/swad_record.c @@ -2466,7 +2466,8 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, /***** User's web and social networks *****/ fprintf (Gbl.F.Out,"", TopC3Width); - Net_ShowWebsAndSocialNets (UsrDat); + if (TypeOfView != Rec_RECORD_PRINT) + Net_ShowWebsAndSocialNets (UsrDat); fprintf (Gbl.F.Out,"" "");