diff options
author | Tomas Popela <tpopela@redhat.com> | 2014-07-15 17:07:37 +0800 |
---|---|---|
committer | Tomas Popela <tpopela@redhat.com> | 2014-07-15 17:10:00 +0800 |
commit | 10af33d5ef20661d535f9d559fd2752915dabbe3 (patch) | |
tree | fbee0bf4c98b8936506e8d19a11549961b414f5a | |
parent | 8939217f8dfa8a7031a953deb92597075a73db0d (diff) | |
download | gsoc2013-evolution-10af33d5ef20661d535f9d559fd2752915dabbe3.tar.gz gsoc2013-evolution-10af33d5ef20661d535f9d559fd2752915dabbe3.tar.zst gsoc2013-evolution-10af33d5ef20661d535f9d559fd2752915dabbe3.zip |
EHTMLEditorView - Remove our attributes from blockquotes when generating the HTML version of the message
-rw-r--r-- | e-util/e-html-editor-view.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/e-util/e-html-editor-view.c b/e-util/e-html-editor-view.c index a1db78ae64..3f4f1a2b8b 100644 --- a/e-util/e-html-editor-view.c +++ b/e-util/e-html-editor-view.c @@ -5373,6 +5373,8 @@ process_elements (EHTMLEditorView *view, } } process_blockquote (WEBKIT_DOM_ELEMENT (child)); + if (to_html) + remove_base_attributes (WEBKIT_DOM_ELEMENT (child)); } } |