diff options
author | madmaxoft <github@xoft.cz> | 2013-08-06 19:28:09 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-06 19:28:09 +0200 |
commit | c55fabb5ad34ec57760b90ea11960f7f426990db (patch) | |
tree | eaa53bca6eff7fca7d4547b46860222d9580af9c /source/WebAdmin.cpp | |
parent | Fixed compilation in ManualBindings (diff) | |
download | cuberite-c55fabb5ad34ec57760b90ea11960f7f426990db.tar cuberite-c55fabb5ad34ec57760b90ea11960f7f426990db.tar.gz cuberite-c55fabb5ad34ec57760b90ea11960f7f426990db.tar.bz2 cuberite-c55fabb5ad34ec57760b90ea11960f7f426990db.tar.lz cuberite-c55fabb5ad34ec57760b90ea11960f7f426990db.tar.xz cuberite-c55fabb5ad34ec57760b90ea11960f7f426990db.tar.zst cuberite-c55fabb5ad34ec57760b90ea11960f7f426990db.zip |
Diffstat (limited to '')
-rw-r--r-- | source/WebAdmin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/WebAdmin.cpp b/source/WebAdmin.cpp index 3d04ce8f3..be7efa18d 100644 --- a/source/WebAdmin.cpp +++ b/source/WebAdmin.cpp @@ -178,7 +178,7 @@ void cWebAdmin::Request_Handler(webserver::http_request* r) if (!bDontShowTemplate) { // New Lua web template - bLuaTemplateSuccessful = WebAdmin->m_pTemplate->CallFunction("ShowPage", sLuaUsertype(WebAdmin, "cWebAdmin"), sLuaUsertype(&TemplateRequest, "HTTPTemplateRequest"), Template); + bLuaTemplateSuccessful = WebAdmin->m_pTemplate->CallShowPage(*WebAdmin, TemplateRequest, Template); } if (!bLuaTemplateSuccessful) @@ -274,14 +274,14 @@ bool cWebAdmin::Init( int a_Port ) m_Port = a_Port; m_IniFile = new cIniFile("webadmin.ini"); - if( m_IniFile->ReadFile() ) + if (m_IniFile->ReadFile()) { - m_Port = m_IniFile->GetValueI("WebAdmin", "Port", 8080 ); + m_Port = m_IniFile->GetValueI("WebAdmin", "Port", 8080); } // Initialize the WebAdmin template script and load the file m_pTemplate->Initialize(); - if (!m_pTemplate->LoadFile( FILE_IO_PREFIX "webadmin/template.lua") || !m_pTemplate->Execute()) + if (!m_pTemplate->LoadFile(FILE_IO_PREFIX "webadmin/template.lua")) { LOGWARN("Could not load WebAdmin template."); } |