diff options
author | Andrew Chow <achow101-github@achow101.com> | 2019-09-08 16:40:37 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2019-09-08 16:40:37 -0400 |
commit | 2c530ea2ada71ca23fa17bab5023b855515463ef (patch) | |
tree | b8cfde9b76d945f5a6e239e356355068b4ec8067 /src/qt/sendcoinsdialog.cpp | |
parent | 1770a972d471d2bdb36195ec370b6fc238649f4d (diff) |
HTML escape address labels in more dialogs and notifications
Diffstat (limited to 'src/qt/sendcoinsdialog.cpp')
-rw-r--r-- | src/qt/sendcoinsdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 3ca70323af..a88119d8c5 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -297,7 +297,7 @@ void SendCoinsDialog::on_sendButton_clicked() { if(rcp.label.length() > 0) // label with address { - recipientElement.append(tr("%1 to '%2'").arg(amount, rcp.label)); + recipientElement.append(tr("%1 to '%2'").arg(amount, GUIUtil::HtmlEscape(rcp.label))); recipientElement.append(QString(" (%1)").arg(address)); } else // just address |