From: Adam Sutton Date: Wed, 9 Jan 2013 13:44:48 +0000 (+0000) Subject: imagecache: restrict access to webui allowed users only. X-Git-Tag: v3.5~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef43010617d584c7222324501ad0202d2d068255;p=thirdparty%2Ftvheadend.git imagecache: restrict access to webui allowed users only. --- 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");