diff options
author | Jason A. Donenfeld | 2018-11-21 03:16:11 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2018-11-25 06:01:34 +0100 |
commit | 898b9e19e0eacd67456ddcc91ff173055e1c0e99 (patch) | |
tree | 3f056db3a9d329b43a0fa7c567ad54672ace5bfb /cgit.c | |
parent | a22855747e97e55a7b7a2622fe671b8ca9af0981 (diff) | |
download | cgit-898b9e19e0eacd67456ddcc91ff173055e1c0e99.tar.gz cgit-898b9e19e0eacd67456ddcc91ff173055e1c0e99.tar.bz2 cgit-898b9e19e0eacd67456ddcc91ff173055e1c0e99.zip |
auth-filter: pass url with query string attached
Otherwise redirections come out wrong.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'cgit.c')
-rw-r--r-- | cgit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -645,7 +645,7 @@ static inline void open_auth_filter(const char *function) | |||
645 | ctx.env.https ? ctx.env.https : "", | 645 | ctx.env.https ? ctx.env.https : "", |
646 | ctx.qry.repo ? ctx.qry.repo : "", | 646 | ctx.qry.repo ? ctx.qry.repo : "", |
647 | ctx.qry.page ? ctx.qry.page : "", | 647 | ctx.qry.page ? ctx.qry.page : "", |
648 | ctx.qry.url ? ctx.qry.url : "", | 648 | cgit_currentfullurl(), |
649 | cgit_loginurl()); | 649 | cgit_loginurl()); |
650 | } | 650 | } |
651 | 651 | ||