From b9806a317e5ebb2de178414a7622011a406e42ff Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Thu, 17 Dec 2020 09:57:03 +0100 Subject: [PATCH] Improve the message shown when the client-tags CGI page is requested with no tags configued --- cgisimple.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgisimple.c b/cgisimple.c index 31030343..5099a579 100644 --- a/cgisimple.c +++ b/cgisimple.c @@ -362,7 +362,7 @@ jb_err cgi_show_client_tags(struct client_state *csp, this_tag = csp->config->client_tags; if (this_tag->name == NULL) { - client_tag_status = strdup_or_die("

No tags available.

\n"); + client_tag_status = strdup_or_die("

No tags have been configured.

\n"); } else { -- 2.39.2