* mionr: correct CONTRIBUTORS file for Plugh

0.6.0-stable
Justin Clarke Casey 2008-11-03 20:16:47 +00:00
parent 1e56bda487
commit c789a9d02a
2 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ Patches
* John R Sohn (XenReborn) * John R Sohn (XenReborn)
* Junta Kohime * Junta Kohime
* Kayne * Kayne
* kcoznes * Kevin Cozens
* kinoc (Daxtron Labs) * kinoc (Daxtron Labs)
* krtaylor (IBM) * krtaylor (IBM)
* lulurun * lulurun

View File

@ -460,7 +460,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge
string welcome = Path.Combine(_welcomes, regionName); string welcome = Path.Combine(_welcomes, regionName);
if (File.Exists(welcome)) if (File.Exists(welcome))
{ {
_log.InfoFormat("[Concierge] UpdateWelcome: updating existing template \"{0}\"", welcome); _log.InfoFormat("[Concierge]: UpdateWelcome: updating existing template \"{0}\"", welcome);
string welcomeBackup = String.Format("{0}~", welcome); string welcomeBackup = String.Format("{0}~", welcome);
if (File.Exists(welcomeBackup)) if (File.Exists(welcomeBackup))
File.Delete(welcomeBackup); File.Delete(welcomeBackup);
@ -473,7 +473,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge
} }
catch (Exception e) catch (Exception e)
{ {
_log.InfoFormat("[Concierge] UpdateWelcome failed: {0}", e.Message); _log.InfoFormat("[Concierge]: UpdateWelcome failed: {0}", e.Message);
responseData["success"] = "false"; responseData["success"] = "false";
responseData["error"] = e.Message; responseData["error"] = e.Message;