From 63752af1683e006a299981fa4b20d4eb4d9ad7f3 Mon Sep 17 00:00:00 2001 From: csoler Date: Thu, 19 Feb 2015 20:32:09 +0000 Subject: [PATCH] fixed recommendation signature (patch from sehraf) git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7960 b45a01b8-16f6-495d-af2f-9b41ad6348cc --- TODO.txt | 2 +- retroshare-gui/src/gui/msgs/MessageComposer.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TODO.txt b/TODO.txt index 7629e626c..9005a3cd3 100644 --- a/TODO.txt +++ b/TODO.txt @@ -25,7 +25,7 @@ E [ ] it's not possible to create a Forum thread without a Owner. GUI General E [ ] do we keep "Getting Started" ? the look needs to be improved E [ ] Recommendation messages do not show complete links. Links show up in some buttons and the text is truncated -E [ ] Recommendation messages should not be signed by the retroshare team!! +E [X] Recommendation messages should not be signed by the retroshare team!! E [ ] when adding a friend through clicking on cert links, the add friend wizard is shown twice! M [X] add a flag in friends option to allow auto-download of recommended files diff --git a/retroshare-gui/src/gui/msgs/MessageComposer.cpp b/retroshare-gui/src/gui/msgs/MessageComposer.cpp index 8f9b032b0..ddb5ac0bd 100644 --- a/retroshare-gui/src/gui/msgs/MessageComposer.cpp +++ b/retroshare-gui/src/gui/msgs/MessageComposer.cpp @@ -474,7 +474,7 @@ void MessageComposer::recommendFriend(const std::list &sslIds, const sMsgText += recommendHtml; sMsgText += "
"; sMsgText += tr("This friend is suggested by") + " " + link.toHtml() + "

" ; - sMsgText += tr("Thanks,
The RetroShare Team"); + sMsgText += tr("Thanks,
") + QString::fromUtf8(rsPeers->getGPGName(rsPeers->getGPGOwnId()).c_str()); composer->setMsgText(sMsgText); std::list ::const_iterator peerIt;