diff options
Diffstat (limited to 'actions/userxrd.php')
-rw-r--r-- | actions/userxrd.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/userxrd.php b/actions/userxrd.php index 575a07c40..582f7a35e 100644 --- a/actions/userxrd.php +++ b/actions/userxrd.php @@ -32,9 +32,9 @@ class UserxrdAction extends XrdAction parent::prepare($args); $this->uri = $this->trimmed('uri'); - $this->uri = Discovery::normalize($this->uri); + $this->uri = self::normalize($this->uri); - if (Discovery::isWebfinger($this->uri)) { + if (self::isWebfinger($this->uri)) { $parts = explode('@', substr(urldecode($this->uri), 5)); if (count($parts) == 2) { list($nick, $domain) = $parts; |