Hi, found this in: ModuleSettings.aspx.cs, the GlobalResource object is null, and when the ToString method an error is thrown before the check for null. Code below:
String settingLabel = GetGlobalResourceObject("Resource", s.SettingName + "RegexWarning").ToString();
if (settingLabel == null)
{
settingLabel = "Regex Warning";
}
I changed it to this, and now it works:
Object oSettingLabel = GetGlobalResourceObject("Resource", s.SettingName + "RegexWarning");
String settingLabel = String.Empty;
if (oSettingLabel == null)
{
settingLabel = "Regex Warning";
}
else
{
settingLabel = oSettingLabel.ToString();
}
Just wanted to let you know, I havnt got the latest version from svn so maybe you already made this change. This appeared when I added roles with swedish letters (å, ä, ö).
Cheers,
Christian Fredh