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.lua15
1 files changed, 0 insertions, 15 deletions
diff --git a/Plugins/Core/web_reload.lua b/Plugins/Core/web_reload.lua
deleted file mode 100644
index 3a59ad6b6..000000000
--- a/Plugins/Core/web_reload.lua
+++ /dev/null
@@ -1,15 +0,0 @@
-function HandleRequest_Reload( Request )
- local Content = ""
-
- if( Request.PostParams["reload"] ~= nil ) 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=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>"
- end
- return Content
-end \ No newline at end of file