ryuan pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=f731f2ed435431d8563c27597644ea328df260b4
commit f731f2ed435431d8563c27597644ea328df260b4 Author: Ryuan Choi <[email protected]> Date: Tue Jan 28 16:16:44 2014 +0900 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 --- src/lib/elc_fileselector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elc_fileselector.c b/src/lib/elc_fileselector.c index 65a9b04..fa610e6 100644 --- a/src/lib/elc_fileselector.c +++ b/src/lib/elc_fileselector.c @@ -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; --
