]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-refs.c
Remove obsolete cacheitem parameter to ui-functions
[ps-cgit] / ui-refs.c
index 295f5ba5ba8698ed2fe088c01023baf50678d404..e2a16f49fb378823f1d8726563acd472e2029331 100644 (file)
--- a/ui-refs.c
+++ b/ui-refs.c
@@ -7,18 +7,16 @@
  */
 
 #include "cgit.h"
-
-
-
+#include "html.h"
 
 void cgit_print_refs()
 {
 
        html("<table class='list nowrap'>");
 
-       if (cgit_query_path && !strncmp(cgit_query_path, "heads", 5))
+       if (ctx.qry.path && !strncmp(ctx.qry.path, "heads", 5))
                cgit_print_branches(0);
-       else if (cgit_query_path && !strncmp(cgit_query_path, "tags", 4))
+       else if (ctx.qry.path && !strncmp(ctx.qry.path, "tags", 4))
                cgit_print_tags(0);
        else {
                cgit_print_branches(0);