From a88c685f0237b0cb0ed8c5d074a214d52d0924a3 Mon Sep 17 00:00:00 2001 From: sapier Date: Sun, 6 Apr 2014 15:20:45 +0200 Subject: Minor fixes for file/modlist download in mainmenu --- src/script/lua_api/l_mainmenu.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/script') diff --git a/src/script/lua_api/l_mainmenu.cpp b/src/script/lua_api/l_mainmenu.cpp index 1a28c9ba0..fbb70c389 100644 --- a/src/script/lua_api/l_mainmenu.cpp +++ b/src/script/lua_api/l_mainmenu.cpp @@ -387,11 +387,6 @@ int ModApiMainMenu::l_get_modstore_details(lua_State *L) /******************************************************************************/ int ModApiMainMenu::l_get_modstore_list(lua_State *L) { - std::string listtype = "local"; - - if (!lua_isnone(L,1)) { - listtype = luaL_checkstring(L,1); - } Json::Value mods; std::string url = ""; try{ @@ -990,6 +985,9 @@ int ModApiMainMenu::l_download_file(lua_State *L) lua_pushboolean(L,true); return 1; } + } else { + errorstream << "DOWNLOAD denied: " << absolute_destination + << " isn't a allowed path" << std::endl; } lua_pushboolean(L,false); return 1; -- cgit v1.2.3