From: Cyril Bonté Date: Wed, 4 Apr 2012 10:57:20 +0000 (+0200) Subject: MINOR: stats admin: use the backend id instead of its name in the form X-Git-Tag: v1.5-dev9~121 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aa0a45d2edda92a1239d213bf306338ad912d9ca;p=thirdparty%2Fhaproxy.git MINOR: stats admin: use the backend id instead of its name in the form Proxy ids are unique whereas names can be used several times in the configuration. In order to prevent the ambiguity, the HTML form now provides the backend id instead of its name (the name can still be provided in the POST data). --- diff --git a/src/dumpstats.c b/src/dumpstats.c index 16d07ddb21..3f88fc5073 100644 --- a/src/dumpstats.c +++ b/src/dumpstats.c @@ -3160,10 +3160,10 @@ static int stats_dump_proxy(struct stream_interface *si, struct proxy *px, struc "" "" "" - "" + "" " " "", - px->id); + px->uuid); } chunk_printf(&msg, "

\n");