summaryrefslogtreecommitdiffstats
path: root/Plugins/Core/web_reload.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/Core/web_reload.lua')
-rw-r--r--Plugins/Core/web_reload.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/Plugins/Core/web_reload.lua b/Plugins/Core/web_reload.lua
index f78297fcb..45ed1a40b 100644
--- a/Plugins/Core/web_reload.lua
+++ b/Plugins/Core/web_reload.lua
@@ -1,12 +1,12 @@
function HandleRequest_Reload( Request )
local Content = ""
- if( Request.Params:get("reload") ~= "" ) then
+ if( Request.PostParams:get("reload") ~= "" ) then
Content = Content .. "<head><meta http-equiv=\"refresh\" content=\"2;././\"></head>"
Content = Content .. "<p>Reloading plugins... This can take a while depending on the plugins you're using.</p>"
cRoot:Get():GetPluginManager():ReloadPlugins()
else
- Content = Content .. "<form method=GET>"
+ Content = Content .. "<form method=POST>"
Content = Content .. "<p>Click the reload button to reload all plugins!<br>"
Content = Content .. "<input type=\"submit\" name=\"reload\" value=\"Reload!\"></p>"
Content = Content .. "</form>"