Fixed spelling error (availble -> available)

0.9.1.0-post-fixes
Kevin Cozens 2018-11-14 18:16:52 -05:00
parent 06fef1569b
commit 54b4e7a3e3
2 changed files with 5 additions and 5 deletions

View File

@ -78,7 +78,7 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage
IXfer xfer = scene.RequestModuleInterface<IXfer>();
if (xfer == null)
{
m_log.ErrorFormat("[MuteListModule]: Xfer not availble in region {0}. Module Disabled", scene.Name);
m_log.ErrorFormat("[MuteListModule]: Xfer not available in region {0}. Module Disabled", scene.Name);
m_Enabled = false;
return;
}
@ -86,7 +86,7 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage
IMuteListService srv = scene.RequestModuleInterface<IMuteListService>();
if(srv == null)
{
m_log.ErrorFormat("[MuteListModule]: MuteListService not availble in region {0}. Module Disabled", scene.Name);
m_log.ErrorFormat("[MuteListModule]: MuteListService not available in region {0}. Module Disabled", scene.Name);
m_Enabled = false;
return;
}
@ -131,7 +131,7 @@ namespace OpenSim.Region.CoreModules.Avatar.InstantMessage
{
get { return null; }
}
public void Close()
{
}

View File

@ -84,7 +84,7 @@ namespace OpenSim.Server.Base
HandleConsoleListAvailablePlugin);
// List available updates
MainConsole.Instance.Commands.AddCommand("Plugin", true,
"plugin updates", "plugin updates","List availble updates",
"plugin updates", "plugin updates","List available updates",
HandleConsoleListUpdates);
// Update plugin
@ -356,4 +356,4 @@ namespace OpenSim.Server.Base
}
#endregion
}
}
}