Add a comment in UserxrdAction warning future maintainers not to break domain migrations if adding domain checking to the webfinger lookup in future.

This commit is contained in:
Brion Vibber 2010-09-27 11:38:26 -07:00
parent 617b6f4f7d
commit 80e0e60c37
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ class UserxrdAction extends XrdAction
if (count($parts) == 2) {
list($nick, $domain) = $parts;
// @fixme confirm the domain too
// @fixme if domain checking is added, ensure that it will not
// cause problems with sites that have changed domains!
$nick = common_canonical_nickname($nick);
$this->user = User::staticGet('nickname', $nick);
}