fixed recommendation signature (patch from sehraf)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7960 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2015-02-19 20:32:09 +00:00
parent f2a8a293cf
commit 63752af168
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -474,7 +474,7 @@ void MessageComposer::recommendFriend(const std::list <RsPeerId> &sslIds, const
sMsgText += recommendHtml;
sMsgText += "<br>";
sMsgText += tr("This friend is suggested by") + " " + link.toHtml() + "<br><br>" ;
sMsgText += tr("Thanks, <br>The RetroShare Team");
sMsgText += tr("Thanks, <br>") + QString::fromUtf8(rsPeers->getGPGName(rsPeers->getGPGOwnId()).c_str());
composer->setMsgText(sMsgText);
std::list <RsPeerId>::const_iterator peerIt;