From 9e9ba6d02b4a8e9dbf1282c303808e7bfc7b09c8 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Mon, 10 Dec 2012 20:41:59 +0000 Subject: [PATCH] debug xml file change from directory.xml to the extension@domain.com --- includes/install/scripts/xml_handler.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/install/scripts/xml_handler.lua b/includes/install/scripts/xml_handler.lua index 57011fa398..8b0a844bb7 100644 --- a/includes/install/scripts/xml_handler.lua +++ b/includes/install/scripts/xml_handler.lua @@ -685,7 +685,7 @@ --send the xml to the console if (debug["xml_string"]) then - local file = assert(io.open("/tmp/directory.xml", "w")); + local file = assert(io.open("/tmp/" .. user .. "@" .. domain_name .. ".xml", "w")); file:write(XML_STRING); file:close(); end