Skip to content
This repository has been archived by the owner on Feb 12, 2018. It is now read-only.

Commit

Permalink
Interface specification should be Class, Assembly
Browse files Browse the repository at this point in the history
  • Loading branch information
peppertree committed Jul 22, 2014
1 parent f557e39 commit f093a3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions View.ascx.vb
Original file line number Diff line number Diff line change
Expand Up @@ -766,8 +766,8 @@ Namespace Connect.Modules.UserManagement.AccountRegistration
Dim objInterface As Object = Nothing

If ExternalInterface.Contains(",") Then
Dim strAssembly As String = ExternalInterface.Split(Char.Parse(","))(0).Trim
Dim strClass As String = ExternalInterface.Split(Char.Parse(","))(1).Trim
Dim strClass As String = ExternalInterface.Split(Char.Parse(","))(0).Trim
Dim strAssembly As String = ExternalInterface.Split(Char.Parse(","))(1).Trim
objInterface = System.Activator.CreateInstance(strAssembly, strClass).Unwrap
End If

Expand Down

0 comments on commit f093a3e

Please sign in to comment.