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?)
I guess its possible folks might have userdirectories keyed by case sensitive usernames -- not my cup of tea but heh. On the whole I think your patch is the right thing to be doing here. I've forwarded the fix to the issues list.
-- geoff http://www.daemon.com.au/
--- 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/
