I ran into an issue today where the case of a username returned from
active directory did not match the case of the corresponding username in
the dmProfile table. The difference in case was preventing the user from
being listed as an approver for news objects. To fix the problem I
changed line 29 of the farcry_core/packages/types/_dmProfile.cfm from:

WHERE userName = '#arguments.userName#'

to:

WHERE UPPER(userName) = '#UCase(arguments.userName)#'

Does anyone see any problems with this solution? (Does the getProfile
search need to be case sensitive?)

TIA,

--Nathan

 

---
You are currently subscribed to farcry-dev as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to