Commit edc813b5da4fad7888b1dcff52dfc324702fa3dd

Authored by Schwirg László
1 parent 64bd9abd

v1.19.5.0

- UserManager-ben hiba javítása
Vrh.Log4Pro.MaintenanceConsole/Properties/AssemblyInfo.cs
... ... @@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
32 32 // You can specify all the values or you can default the Build and Revision Numbers
33 33 // by using the '*' as shown below:
34 34 // [assembly: AssemblyVersion("1.0.*")]
35   -[assembly: AssemblyVersion("1.19.4.0")]
36   -[assembly: AssemblyFileVersion("1.19.4.0")]
  35 +[assembly: AssemblyVersion("1.19.5.0")]
  36 +[assembly: AssemblyFileVersion("1.19.5.0")]
... ...
Vrh.Log4Pro.MaintenanceConsole/Tools - Membership.cs
... ... @@ -601,7 +601,7 @@ namespace Vrh.Log4Pro.MaintenanceConsole.ToolsNS
601 601 ReturnInfoJSON result = new ReturnInfoJSON() { ReturnMessage = "Assignment was successful!" };
602 602 try
603 603 {
604   - if (m_roleProvider != null) { throw new Exception("RoleService is not enabled!"); }
  604 + if (m_roleProvider == null) { throw new Exception("RoleService is not enabled!"); }
605 605 var rolegroupnamelist = rolegroupnamecommalist != null ? new List<string>(rolegroupnamecommalist.Split(',')) : new List<string>();
606 606 var usernamelist = usernamecommalist != null ? new List<string>(usernamecommalist.Split(',')) : new List<string>();
607 607 foreach (var rolegroupname in rolegroupnamelist)
... ...