fileselector: Fixed that does not navigate / on path_entry

href=/> are not working because /> is considered to self closing tag.

Instead. href='/'> is fine since rEFL2d4ba9e8d
This commit is contained in:
Ryuan Choi 2014-01-28 16:16:44 +09:00
parent d29a394bd0
commit 70782a358b
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ _anchors_do(Evas_Object *obj,
tok = eina_str_split(s, "/", 0);
free(s);
eina_strlcat(buf, "<a href=/>root</a>", sizeof(buf));
eina_strlcat(buf, "<a href='/'>root</a>", sizeof(buf));
for (i = 0; tok[i]; i++)
{
if ((!tok[i]) || (!tok[i][0])) continue;