diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-16 18:20:28 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-02-16 18:20:28 +0100 |
commit | 008addf5d746b2d158f9116e4f6302861b42852f (patch) | |
tree | d569fe2253917ca3dc979c1b5b51d534aa4a538e /Plugins/Core/web_permissions.lua | |
parent | Chunks are now marked as saved (diff) | |
download | cuberite-008addf5d746b2d158f9116e4f6302861b42852f.tar cuberite-008addf5d746b2d158f9116e4f6302861b42852f.tar.gz cuberite-008addf5d746b2d158f9116e4f6302861b42852f.tar.bz2 cuberite-008addf5d746b2d158f9116e4f6302861b42852f.tar.lz cuberite-008addf5d746b2d158f9116e4f6302861b42852f.tar.xz cuberite-008addf5d746b2d158f9116e4f6302861b42852f.tar.zst cuberite-008addf5d746b2d158f9116e4f6302861b42852f.zip |
Diffstat (limited to '')
-rw-r--r-- | Plugins/Core/web_permissions.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Plugins/Core/web_permissions.lua b/Plugins/Core/web_permissions.lua index 5c7527056..4fce502e1 100644 --- a/Plugins/Core/web_permissions.lua +++ b/Plugins/Core/web_permissions.lua @@ -11,7 +11,7 @@ local function ShowUsersTable() Content = Content .. "<table>"
if( NumUsers > 0 ) then
- Content = Content .. "<tr><td></td><td>User</td><td>Groups</td></tr>"
+ Content = Content .. "<tr><th></th><th>User</th><th>Groups</th></tr>"
for i=0, NumUsers-1 do
local UserName = UsersIni:GetKeyName( i )
@@ -45,7 +45,7 @@ local function ShowGroupsTable() Content = Content .. "<table>"
if( NumGroups > 0 ) then
- Content = Content .. "<tr><td></td><td>Name</td><td>Permissions</td><td>Color</td></tr>"
+ Content = Content .. "<tr><th></th><th>Name</th><th>Permissions</th><th>Color</th></tr>"
for i=0, NumGroups-1 do
local GroupName = GroupsIni:GetKeyName( i )
|