]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-repolist.c
authors: specify maintainers
[ps-cgit] / ui-repolist.c
index 2ab6e9e41cca24fa9a2e3ad17682090cfc592e20..7b1fec307f2f0927034d9b8299d2bd9a379730cb 100644 (file)
@@ -1,7 +1,6 @@
 /* ui-repolist.c: functions for generating the repolist page
  *
- * Copyright (C) 2006 Lars Hjemli
- * Copyright (C) 2012 Jason A. Donenfeld <Jason@zx2c4.com>
+ * Copyright (C) 2006-2014 cgit Development Team <cgit@lists.zx2c4.com>
  *
  * Licensed under GNU General Public License v2
  *   (see COPYING for full license text)
@@ -107,7 +106,9 @@ static int is_in_url(struct cgit_repo *repo)
 
 static void print_sort_header(const char *title, const char *sort)
 {
-       htmlf("<th class='left'><a href='%s?s=%s", cgit_rooturl(), sort);
+       html("<th class='left'><a href='");
+       html_attr(cgit_rooturl());
+       htmlf("?s=%s", sort);
        if (ctx.qry.search) {
                html("&amp;q=");
                html_url_arg(ctx.qry.search);
@@ -332,13 +333,9 @@ void cgit_print_site_readme()
 {
        if (!ctx.cfg.root_readme)
                return;
-       if (ctx.cfg.about_filter) {
-               ctx.cfg.about_filter->argv[1] = ctx.cfg.root_readme;
-               cgit_open_filter(ctx.cfg.about_filter);
-       }
+       if (ctx.cfg.about_filter)
+               cgit_open_filter(ctx.cfg.about_filter, ctx.cfg.root_readme);
        html_include(ctx.cfg.root_readme);
-       if (ctx.cfg.about_filter) {
+       if (ctx.cfg.about_filter)
                cgit_close_filter(ctx.cfg.about_filter);
-               ctx.cfg.about_filter->argv[1] = NULL;
-       }
 }