Skip to content

Commit 1305eba

Browse files
committed
bug fix;updating google auth users resulted saving with wrong userID.
1 parent a88a3d6 commit 1305eba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

webskin/dmProfile/editGUDUser.cfm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ ACTION
2626
<cfset stUser = oUser.getData(objectid=savedUserID) />
2727

2828
<!--- If the current username is not the same one we saved (ie. new user) --->
29-
<cfif stProperties.username NEQ "#stUser.objectid#_GUD"><!--- New user --->
30-
<cfset stProperties.username = "#stUser.objectid#_GUD" />
29+
<cfif stProperties.username NEQ "#stUser.userid#_GUD"><!--- New user --->
30+
<cfset stProperties.username = "#stUser.userid#_GUD" />
3131
<cfset stProperties.userdirectory = "GUD" />
3232
</cfif>
3333
</cfif>

0 commit comments

Comments
 (0)