From e8cd53ce2e06f28f2ed241c11d89280d611865bb Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Fri, 10 Apr 2020 09:58:59 +0100 Subject: [PATCH] Make it more visible that admins have lots of privileges --- modules/webadmin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/webadmin.cpp b/modules/webadmin.cpp index 37caa68c..7fada328 100644 --- a/modules/webadmin.cpp +++ b/modules/webadmin.cpp @@ -1548,7 +1548,7 @@ class CWebAdminMod : public CModule { CTemplate& o10 = Tmpl.AddRow("OptionLoop"); o10["Name"] = "isadmin"; - o10["DisplayName"] = t_s("Admin"); + o10["DisplayName"] = t_s("Admin (dangerous! may gain shell access)"); if (pUser->IsAdmin()) { o10["Checked"] = "true"; }