Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6594eca0 authored by Raph Levien's avatar Raph Levien Committed by Android Git Automerger
Browse files

am 9704b563: Merge "Fix for 7301594 Html.toHtml creating potentially invalid html" into jb-mr1-dev

* commit '9704b563':
  Fix for 7301594 Html.toHtml creating potentially invalid html
parents 9641fc30 9704b563
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -221,10 +221,10 @@ public class Html {
                false /* no info */);
        switch(paraDir) {
            case Layout.DIR_RIGHT_TO_LEFT:
                return "<p dir=rtl>";
                return "<p dir=\"rtl\">";
            case Layout.DIR_LEFT_TO_RIGHT:
            default:
                return "<p dir=ltr>";
                return "<p dir=\"ltr\">";
        }
    }