From 8285a11a26d78784f26b76e6bcdfa479f6c1a345 Mon Sep 17 00:00:00 2001 From: faketruth Date: Tue, 8 Nov 2011 01:25:01 +0000 Subject: It's a Squirrel!! In SquirrelBindings.h use #define USE_SQUIRREL 1 to enable squirrel git-svn-id: http://mc-server.googlecode.com/svn/trunk@76 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cWebAdmin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/cWebAdmin.cpp') diff --git a/source/cWebAdmin.cpp b/source/cWebAdmin.cpp index 03775ee3f..bc22a4681 100644 --- a/source/cWebAdmin.cpp +++ b/source/cWebAdmin.cpp @@ -109,7 +109,7 @@ void cWebAdmin::Request_Handler(webserver::http_request* r) const cPluginManager::PluginList & List = PM->GetAllPlugins(); for( cPluginManager::PluginList::const_iterator itr = List.begin(); itr != List.end(); ++itr ) { - Content += (*itr)->GetName() + "
"; + Content += std::string( (*itr)->GetName() ) + "
"; } Content += "

"; Content += "

Players:

"; -- cgit v1.2.3