Skip to content

Commit

Permalink
Merge pull request #171 from RubenEu/master
Browse files Browse the repository at this point in the history
Fixed html issue
  • Loading branch information
bearbin committed Aug 10, 2016
2 parents 00b2463 + 97ff483 commit a23bdb2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions web_manageserver.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,18 @@ function HandleRequest_ManageServer( Request )
<form method="POST">
<table>
<th colspan="2">Manage Server</th>
<tr><td><input type="submit" value="Restart Server" name="RestartServer"> restart the server</td></tr> <br />
<tr><td><input type="submit" value="Reload Server" name="ReloadServer"> reload the server</td></tr> <br />
<tr><td><input type="submit" value="Stop Server" name="StopServer"> stop the server</td></tr> <br />
<tr><td><input type="submit" value="Restart Server" name="RestartServer"> restart the server</td></tr>
<tr><td><input type="submit" value="Reload Server" name="ReloadServer"> reload the server</td></tr>
<tr><td><input type="submit" value="Stop Server" name="StopServer"> stop the server</td></tr>
</th>
</table>
<br />
<table>
<th colspan="2">Manage Worlds</th>
]]
local LoopWorlds = function( World )
Content = Content .. [[
<tr><td><input type="submit" value="]] .. World:GetName() .. [[" name="WorldSaveAllChunks"> Save all the chunks of world ]] .. World:GetName() .. [[</td></tr> <br />
<tr><td><input type="submit" value="]] .. World:GetName() .. [[" name="WorldSaveAllChunks"> Save all the chunks of world ]] .. World:GetName() .. [[</td></tr>
]]
end
Expand Down

0 comments on commit a23bdb2

Please sign in to comment.