From d349b98025cad742e781a039e6426a39b4b2cc65 Mon Sep 17 00:00:00 2001 From: Paul Boekholt Date: Mon, 11 Nov 2013 00:29:51 +0900 Subject: Add support for single quoted meta refresh URL Bug: https://sourceforge.net/p/w3m/patches/53/ --- file.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'file.c') diff --git a/file.c b/file.c index 567d41e..7a07aba 100644 --- a/file.c +++ b/file.c @@ -4284,15 +4284,15 @@ getMetaRefreshParam(char *q, Str *refresh_uri) while (*q) { if (!strncasecmp(q, "url=", 4)) { q += 4; - if (*q == '\"') /* " */ + if (*q == '\"' || *q == '\'') /* " or ' */ q++; r = q; while (*r && !IS_SPACE(*r) && *r != ';') r++; s_tmp = Strnew_charp_n(q, r - q); - if (s_tmp->ptr[s_tmp->length - 1] == '\"') { /* " - */ + if (s_tmp->ptr[s_tmp->length - 1] == '\"' /* " */ + || s_tmp->ptr[s_tmp->length - 1] == '\'') { /* ' */ s_tmp->length--; s_tmp->ptr[s_tmp->length] = '\0'; } -- cgit v1.2.3