From: Brion Vibber Date: Wed, 19 May 2010 23:19:06 +0000 (-0700) Subject: Quick fix for creating OpenID accounts authenticating against a MediaWiki site; trim... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=708d22848ecffdb80ca2cd9e5f4a7f84d5ae3189;p=quix0rs-gnu-social.git Quick fix for creating OpenID accounts authenticating against a MediaWiki site; trim the 'User:' etc from the final path segment before generating a nickname from it. Avoids ending up with nicks like 'userbrion' on your first OpenID login! --- diff --git a/lib/util.php b/lib/util.php index 597da22c09..59d5132ec6 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1925,6 +1925,15 @@ function common_url_to_nickname($url) $path = preg_replace('@/$@', '', $parts['path']); $path = preg_replace('@^/@', '', $path); $path = basename($path); + + // Hack for MediaWiki user pages, in the form: + // http://example.com/wiki/User:Myname + // ('User' may be localized.) + if (strpos($path, ':')) { + $parts = array_filter(explode(':', $path)); + $path = $parts[count($parts) - 1]; + } + if ($path) { return common_nicknamize($path); }