fix parsing <br /> tags in markup_to_utf8

SVN revision: 65630
This commit is contained in:
Mike Blumenkrantz 2011-11-28 03:09:24 +00:00
parent 8d7966e5f4
commit b4ca9b3eee
1 changed files with 3 additions and 0 deletions

View File

@ -127,6 +127,9 @@ _elm_util_mkup_to_text(const char *mkup)
if (tag_start)
{
tag_end = p;
/* <br /> */
/* ^^^ */
if ((p - mkup > 1) && (p[-1] == '/')) p--;
s = p + 1;
}
}