redirect: be more careful for different cgi setups

Esse commit está contido em:
Jason A. Donenfeld 2015-08-13 11:38:27 +02:00
commit 622e64d5f2
1 arquivos alterados com 4 adições e 1 exclusões

5
cmd.c
Ver arquivo

@ -46,7 +46,10 @@ static void about_fn(void)
static void about_pre(void)
{
if (ctx.repo && !ctx.qry.path && ctx.qry.url[strlen(ctx.qry.url) - 1] != '/')
if (ctx.repo &&
!ctx.qry.path &&
ctx.qry.url[strlen(ctx.qry.url) - 1] != '/' &&
ctx.env.path_info[strlen(ctx.env.path_info) - 1] != '/')
cgit_redirect(fmtalloc("%s/", cgit_currenturl()), true);
}