From fce39f0fce851d5cccd09f265836458ca1a55981 Mon Sep 17 00:00:00 2001 From: Joe Steele Date: Thu, 1 Aug 2013 17:45:40 -0400 Subject: [PATCH] HTML tag cleanup Effective with earlier commit e2c5229e854e2ef62585f919a15660cba2489b04, messages are wrapped with tags at display time, rather than when messages are saved. For consistency, this commit removes tags from a status message, because they, too, will be added back at display time. Closes pull request 286. --- src/com/fsck/k9/view/SingleMessageView.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/com/fsck/k9/view/SingleMessageView.java b/src/com/fsck/k9/view/SingleMessageView.java index d4443cb2f..fc2e866df 100644 --- a/src/com/fsck/k9/view/SingleMessageView.java +++ b/src/com/fsck/k9/view/SingleMessageView.java @@ -624,9 +624,7 @@ public class SingleMessageView extends LinearLayout implements OnClickListener, } public void showStatusMessage(String status) { - String text = "
" + - status + - "
"; + String text = "
" + status + "
"; loadBodyFromText(text); mCryptoView.hide(); }