From ef43010617d584c7222324501ad0202d2d068255 Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Wed, 9 Jan 2013 13:44:48 +0000 Subject: [PATCH] imagecache: restrict access to webui allowed users only. --- src/webui/webui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/webui.c b/src/webui/webui.c index c7a79c503..8d7d90d8d 100644 --- a/src/webui/webui.c +++ b/src/webui/webui.c @@ -967,7 +967,7 @@ webui_init(void) http_path_add("/stream", NULL, http_stream, ACCESS_STREAMING); - http_path_add("/imagecache", NULL, page_imagecache, ACCESS_ANONYMOUS); + http_path_add("/imagecache", NULL, page_imagecache, ACCESS_WEB_INTERFACE); webui_static_content("/static", "src/webui/static"); webui_static_content("/docs", "docs/html"); -- 2.47.3