Fix what appears to be a bug in HGUserManagementModule where it enables on the base.Name rather than its own Name.
parent
600087ab49
commit
0dce496499
|
@ -50,12 +50,11 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement
|
||||||
{
|
{
|
||||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
|
||||||
|
|
||||||
#region ISharedRegionModule
|
#region ISharedRegionModule
|
||||||
|
|
||||||
public new void Initialise(IConfigSource config)
|
public new void Initialise(IConfigSource config)
|
||||||
{
|
{
|
||||||
string umanmod = config.Configs["Modules"].GetString("UserManagementModule", base.Name);
|
string umanmod = config.Configs["Modules"].GetString("UserManagementModule", Name);
|
||||||
if (umanmod == Name)
|
if (umanmod == Name)
|
||||||
{
|
{
|
||||||
m_Enabled = true;
|
m_Enabled = true;
|
||||||
|
|
Loading…
Reference in New Issue