From 022298601cad5a59aba37fa205f6f5ae6a364956 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Mon, 21 Jun 2010 15:27:59 +0200 Subject: [PATCH] Rename the "search" parameter to "q". --- src/action_list_graphs.c | 6 ++---- src/action_show_graph.c | 2 +- src/utils_cgi.c | 6 +++--- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/src/action_list_graphs.c b/src/action_list_graphs.c index e32b999..86d6e43 100644 --- a/src/action_list_graphs.c +++ b/src/action_list_graphs.c @@ -213,7 +213,7 @@ static int print_host_list (__attribute__((unused)) void *user_data) /* {{{ */ host_html = html_escape (host); - printf ("
  • %s
  • \n", + printf ("
  • %s
  • \n", script_name (), host_html, host_html); free (host_html); @@ -256,10 +256,8 @@ int action_list_graphs (void) /* {{{ */ gl_update (); - search = strtolower_copy (param ("search")); - + search = strtolower_copy (param ("q")); status = list_graphs_html (search); - free (search); return (status); diff --git a/src/action_show_graph.c b/src/action_show_graph.c index 5aaf25a..2f124de 100644 --- a/src/action_show_graph.c +++ b/src/action_show_graph.c @@ -39,7 +39,7 @@ static void show_breadcrump_field (const char *str) /* {{{ */ else { char *str_html = html_escape (str); - printf ("%s", + printf ("%s", script_name (), str_html, str_html); free (str_html); } diff --git a/src/utils_cgi.c b/src/utils_cgi.c index 9030eb8..97dfc7c 100644 --- a/src/utils_cgi.c +++ b/src/utils_cgi.c @@ -439,11 +439,11 @@ int html_print_search_box (__attribute__((unused)) void *user_data) /* {{{ */ { char *term_html; - term_html = html_escape (param ("search")); + term_html = html_escape (param ("q")); - printf ("
    \n" + printf ("\n" " \n" - " \n" + " \n" " \n" "
    \n", script_name (), -- 2.11.0