diff options
author | Christian Hesse | 2015-03-18 18:08:48 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2015-03-18 18:23:46 +0100 |
commit | d1ddce90f58e9b7fc00c39d912a4c8d1b3e27595 (patch) | |
tree | 94a95b1e7af7236f27f3735f72fb3930b3326b32 | |
parent | 84627609f5a7634732fe1d718e7d1c18254e64c8 (diff) | |
download | cgit-d1ddce90f58e9b7fc00c39d912a4c8d1b3e27595.tar.gz cgit-d1ddce90f58e9b7fc00c39d912a4c8d1b3e27595.tar.bz2 cgit-d1ddce90f58e9b7fc00c39d912a4c8d1b3e27595.zip |
ui-shared: allow remote refs in branch switcher
Signed-off-by: Christian Hesse <mail@eworm.de>
-rw-r--r-- | ui-shared.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c index 1dd8722..ac5a287 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -895,6 +895,8 @@ static void print_header(void) | |||
895 | cgit_add_hidden_formfields(0, 1, ctx.qry.page); | 895 | cgit_add_hidden_formfields(0, 1, ctx.qry.page); |
896 | html("<select name='h' onchange='this.form.submit();'>\n"); | 896 | html("<select name='h' onchange='this.form.submit();'>\n"); |
897 | for_each_branch_ref(print_branch_option, ctx.qry.head); | 897 | for_each_branch_ref(print_branch_option, ctx.qry.head); |
898 | if (ctx.repo->enable_remote_branches) | ||
899 | for_each_remote_ref(print_branch_option, ctx.qry.head); | ||
898 | html("</select> "); | 900 | html("</select> "); |
899 | html("<input type='submit' name='' value='switch'/>"); | 901 | html("<input type='submit' name='' value='switch'/>"); |
900 | html("</form>"); | 902 | html("</form>"); |